Question

I know how to make a page link in GitHub's wiki. Normally you can just do:

[Arbitrary Link Text](Wiki Page Name)

Ref: Stack Overflow question Linking to other Wiki pages on GitHub? [closed].

But, in my GitHub repository I have a wiki page named "ExampleModule::ExampleClass" with two colons. How do I make a link for it?

I've tried:

[Arbitrary Link Text](ExampleModule::ExampleClass)

It doesn't work.


Based on the answer, here's my discovering:

Say if I have a page in a GitHub project's wiki repository called overview>:

Link to overview from wiki repository Home page:

[Overview](wiki/overview)

Link to overview from wiki repository that is NOT Home:

[Overview](../wiki/overview)

Link to overview from project repository:

[Overview](../../wiki/Overview)
Was it helpful?

Solution

If you create a page named Example::Page, you could link it with:

[Click here](wiki/Example::Page)

The colon isn't a problem.

I made a simple example here.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top