mirror of
https://github.com/vale981/recommonmark
synced 2025-03-05 10:01:39 -05:00
Clarify the specifics of Auto Toc Tree
Removes a double-up-on-the-verb situation.
This commit is contained in:
parent
815d75ea50
commit
4ad6e66e94
1 changed files with 2 additions and 2 deletions
|
@ -38,13 +38,13 @@ One of important command in tools like sphinx is `toctree`. This is a command to
|
||||||
tell sphinx about the structure of the documents. In markdown, usually we manually list of contents by a bullet list
|
tell sphinx about the structure of the documents. In markdown, usually we manually list of contents by a bullet list
|
||||||
of url reference to the other documents.
|
of url reference to the other documents.
|
||||||
|
|
||||||
AutoStructify will transforms bullet list of document URLs
|
AutoStructify transforms bullet list of document URLs like this
|
||||||
|
|
||||||
```
|
```
|
||||||
* [Title1](doc1.md)
|
* [Title1](doc1.md)
|
||||||
* [Title2](doc2.md)
|
* [Title2](doc2.md)
|
||||||
```
|
```
|
||||||
will be translated to the AST of following reStructuredText code
|
to the AST of this following reStructuredText code
|
||||||
```rst
|
```rst
|
||||||
.. toctree::
|
.. toctree::
|
||||||
:maxdepth: 1
|
:maxdepth: 1
|
||||||
|
|
Loading…
Add table
Reference in a new issue