如何为 readme.md 文件的指定部分创建 link?
How do you create a link to a specified section of your readme.md file?
我正在练习自述文件,我有一个关于 linking 的问题。有没有办法 link 到自述文件的特定部分?例如,我想在我的 readme.md 文件的特定部分创建一个 table 的内容 links。
# Title
## Sub Title
Brief description of project.
### Table of Content
* [Section 1](#section1)
* [Section 2](#section2)
* [Section 3](#section3)
# Section 1
some text
# Section 2
some text
# Section 3
some text
根据我的理解,我认为这会起作用,但是 link 不会将我带到这些部分,当我单击它们时它没有任何反应。
您将锚点添加到该部分,即
#<a name="section-1"></a> Section 1
然后link它使用
[Section 1](#section-1)
我正在练习自述文件,我有一个关于 linking 的问题。有没有办法 link 到自述文件的特定部分?例如,我想在我的 readme.md 文件的特定部分创建一个 table 的内容 links。
# Title
## Sub Title
Brief description of project.
### Table of Content
* [Section 1](#section1)
* [Section 2](#section2)
* [Section 3](#section3)
# Section 1
some text
# Section 2
some text
# Section 3
some text
根据我的理解,我认为这会起作用,但是 link 不会将我带到这些部分,当我单击它们时它没有任何反应。
您将锚点添加到该部分,即
#<a name="section-1"></a> Section 1
然后link它使用
[Section 1](#section-1)