参考我的维基的一部分

Make reference to a section of my wiki

我正在 GitHub 上的 Wiki 上工作,我想使用引用来告诉用户转到我的 Wiki 的特定部分,以防 he/she 想要咨询某些内容。

例如

If you want to know more about this, go to **Section 2**


##Section 2
Some text

我的意图是,如果用户单击 第 2 部分,他可以立即看到第 2 部分中的内容。就像 link 导致的部分同一个维基。

If you want to know more about this, go to **[Section 2](#section-2)**

## Section 2
Some text

参见示例:https://gist.github.com/plu/22e4dfdc9e4dab16dd932b675af15aa6

每个部分锚名称是根据部分名称生成的,每个单词之间有连字符(小写)。例如,在 https://github.com/Netflix/Hystrix/wiki#what-is-hystrix 中,您可以将鼠标悬停在部分名称旁边的 chain icon 上以查看锚名称(在本例中为 #what-is-hystrix):

要参考它:

[Go to section](#what-is-hystrix)

正在使用:

- [Topic](#topic)

和标题

## Topic

没关系,click here for see an example