我正在使用GitHub上的Wiki,我想使用引用来告诉用户转到我的wiki的特定部分,以防他/她想咨询一些内容。
例如
If you want to know more about this, go to **Section 2**
##Section 2
Some text
我的意图是,如果用户点击第2节,他可以立即看到第2节中的内容。就像链接指向同一个wiki上的某个部分一样。
答案 0 :(得分:0)
If you want to know more about this, go to **[Section 2](#section-2)**
## Section 2
Some text
参见示例:https://gist.github.com/plu/22e4dfdc9e4dab16dd932b675af15aa6
答案 1 :(得分:0)
每个部分的锚名称都是根据部分名称生成的,每个单词之间都有连字符(小写)。例如,在https://github.com/Netflix/Hystrix/wiki#what-is-hystrix中,您可以将鼠标悬停在部分名称旁边的chain icon
上以查看锚名称(在本例中为#what-is-hystrix
):
参考它:
[Go to section](#what-is-hystrix)
答案 2 :(得分:0)