In GitHub, how do I make a wiki page link with the title that has a special character?

StackOverflow https://stackoverflow.com/questions/19869675

  •  29-07-2022
  •  | 
  •  

سؤال

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)
هل كانت مفيدة؟

المحلول

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.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top