Github 标记同页链接

假设我在同一个 git hub wiki 页面中有两个点,我们称之为 place 1place 2

##Title


###Place 1


Hello, this is some text to fill in this, [here](place2), is a link to the second place.


###Place 2


Place one has the fun times of linking here, but I can also link back [here](place1).

另一种选择是作战指挥中心。

##Title
[ToC]
###Place 1
###Place 2

有什么办法吗?注意看到的 这个,所以我将假设它的主题。另外,这个处理文件之间的转换,这个处理同一个文件之间的转换。

95660 次浏览

这在 Github 上是可行的:

## Title


### Place 1


Hello, this is some text to fill in this, [here](#place-2), is a link to the second place.


### Place 2


Place one has the fun times of linking here, but I can also link back [here](#place-1).


### Place's 3: other example


Place one has the fun times of linking here, but I can also link back [here](#places-3-other-example).

转换规则摘要:

  • 句读会被撤销
  • 将删除前导空格
  • 大写字母将转换为小写字母
  • 字母之间的空格将转换为 -

有大量链接和格式的示例文档是 LivingSocial API 设计指南

还可以创建命名的自定义锚,例如,如果您有一组具有相同名称的(子)标题。要使用头部完成此操作,请插入一个 HTML 标记:

<h4 id="login-optional-fields">
Optional Fields
</h4>

然后通过 ID 属性链接到它:

[see above](#login-optional-fields)

另外,直接在文档中添加一个锚标记也是可行的:

<a id="my-anchor"></a>

不幸的是,GitHub wiki 似乎删除了所有的“ id =”。."来自您添加到 wiki 页面的自定义 HTML 的标记,因此页面中唯一可以工作的锚是标题。

复制自 GitHub Gist-位于 给你的原始文章

要创建跳转到 README 不同部分的锚链接(如在交互式目录中) ,首先创建一个标题:

#Real Cool Heading

该标题的锚链接是带有破折号的小写标题名称,其中有空格。您总是可以通过访问 Github.com 上的 README 并单击鼠标悬停在标题左侧时出现的锚来获得锚名。复制从 # 开始的所有内容:

#real-cool-heading

无论你想链接到什么地方,把你想要的文本放在括号里,然后是括号里的锚链接:

[Go to Real Cool Heading section](#real-cool-heading)

例子一:

##Title


###Place 1<span id="place1">HelloWorld</span>


Hello, this is some text to fill in this, [here](#place2), is a link to the second place.


###Place 2<span id="place2">HelloWorld</span>


Place one has the fun times of linking here, but I can also link back [here](#place1).

这个版本可以从第一个地方跳到第二个地方,从第二个地方跳到第一个地方

##Title


###[Place 1](#Place-2)<span id="place1">HelloWorld</span>


Hello, this is some text to fill in this, [here](#place2), is a link to the second
place.


###Place 2(#Place-1)<span id="place2">HelloWorld</span>


Place one has the fun times of linking here, but I can also link back [here](#place1).

接受的答案不适合我,因为我的标题也是一个链接:

以前(不起作用) :

Table of contents


1. [Header Name](#header-name)




### [Header Name](https://google.com)

之后(为我工作) :

Table of contents


1. [Header Name](#header-name)




### Header Name


https://google.com

这是当您不希望有 html,并希望与接受的解决方案与一些折衷的自述文件。