Difference between revisions of "Md-toc"

From Free Software Directory
Jump to: navigation, search
(updated to new release)
(Update to version 9.0.0.)
 
(39 intermediate revisions by 4 users not shown)
Line 1: Line 1:
 
{{Entry
 
{{Entry
 
|Name=md-toc
 
|Name=md-toc
|Short description=Automatically generate a compliant table of contents for a markdown file to improve document readability
+
|Short description=Automatically generate and add an accurate table of contents to markdown files.
|Full description=The table of contents (a.k.a: TOC) generated by this program is designed to work with several markdown parsers such as the ones used by GitHub and GitLab.
+
|Full description===Description==
  
When used with the in-place option this script will write TOC at the first occurrency of a marker. The default marker is [](TOC), which will result invisible after the markdown file has been translated.
+
The table of contents (a.k.a: TOC) generated by this program is designed to work with several markdown parsers such as the ones used by GitHub and GitLab.
  
By default titles up to three indentation levels (in HTML: h1, h2, h3) will be included in the TOC but the user can decide to keep any wanted level.
+
Rules for generating the TOC are determined by the selected markdown parser. md-toc aimes infact to be as conformant as possible in respect to each one of them. This was possible by studying the available documentations and by reverse engineering the source codes.
  
md_toc makes it is possible to generate ordered or unordered TOCs. In both cases each element of the TOC is by default a link to a paragraph in the web page. It is also possible to generate non-linked version of the TOC.
+
GitHub and GitLab have introduced their version of the markdown TOC after md-toc and similar tools were created:
 +
* in March 2021 GitHub added an [https://github.blog/changelog/2021-04-13-table-of-contents-support-in-markdown-files/ interactive TOC button] at the top-left of readme files. This system works for markdown and others
 +
* GitLab added an [https://docs.gitlab.com/ee/user/markdown.html#table-of-contents extension] called Table of contents to its Gitlab Flavored Mardown
  
If the user wants it, there is the possibility to ignore space indentations within the TOC.
+
==Features==
  
Rules for generating the TOC are determined by the selected markdown parser. md-toc aimes to be as conformant as possible in respect to each one of them. This was possible by studying the available documentation and/or reverse engineering the source code.
+
* works offline
|Homepage URL=https://github.com/frnmst/md-toc
+
* edits file in place using a TOC marker or output to standard output
|Is High Priority Project=No
+
* maximum heading level selection (1 to 6)
|VCS checkout command=git clone https://github.com/frnmst/md-toc
+
* list indentation based on heading, which can optionally be disabled
|Computer languages=Python
+
* outputs an ordered or unordered TOC list
|Documentation note=Documentation at: http://frnmst.github.io/md-toc
+
* creates anchor links to markdown headings by default or a plain list as alternative
|Decommissioned or Obsolete=No
+
* checks if heading level is coherent: this avoid creating an erroneous TOC. This feature can be disabled if needed
|Keywords=markdown, md, table-of-contents, toc
+
* skip any number lines before generating the TOC
|Version identifier=3.1.0
+
* can read content from standard input
|Version date=2019/03/29
+
* handles multiple files at once
|Version status=alpha
+
* selection of newline string
|Version download=https://github.com/frnmst/md-toc/archive/3.1.0.tar.gz
+
* check if there is difference between existing TOC in file and newly generated one
|Version comment=Fixed code fence detection for github. Other fixes.
+
* selection of list marker
|Last review by=Frnmst
+
* supports GitHub, GitLab, Commonmark, Redcarpet and others
|Last review date=2019/03/29
+
* [https://pre-commit.com/ pre-commit] md-toc [https://docs.franco.net.eu.org/md-toc/pre_commit_hook.html hook]
|Submitted date=2018/01/27
+
 
|User level=intermediate
+
And more! See the [https://docs.franco.net.eu.org/md-toc/features.html feature comparison table]
|Component programs=Python 3
+
|Homepage URL=https://blog.franco.net.eu.org/software/#md-toc
|Accepts cryptocurrency donations=No
+
|Version download=https://blog.franco.net.eu.org/software/md-toc-9.0.0/md-toc-9.0.0.tar.gz
|Test entry=No
 
|Is GNU=No
 
 
}}
 
}}
 
{{Project license
 
{{Project license
 
|License=GPLv3orlater
 
|License=GPLv3orlater
|License copyright=Copyright (C) 2017-2019 frnmst (Franco Masotti) <franco.masotti@live.com>
+
|License copyright=Copyright (C) 2017-2024 Franco Masotti (see /README.md)
  
 
md-toc is free software: you can redistribute it and/or modify
 
md-toc is free software: you can redistribute it and/or modify
Line 50: Line 50:
 
You should have received a copy of the GNU General Public License
 
You should have received a copy of the GNU General Public License
 
along with md-toc.  If not, see <http://www.gnu.org/licenses/>.
 
along with md-toc.  If not, see <http://www.gnu.org/licenses/>.
}}
+
|License verified by=agyaanapan
{{Person}}
+
|License verified date=2021-06-13
{{Resource
+
|License note=See also https://docs.franco.net.eu.org/md-toc/meta.html#copyright-and-license for a list of all the licenses used.
|Resource audience=Python (Ref)
 
|Resource URL=https://pypi.org/project/md-toc
 
 
}}
 
}}
 
{{Software category
 
{{Software category
Line 60: Line 58:
 
|Interface=command-line, console, text
 
|Interface=command-line, console, text
 
|Programming-language=python
 
|Programming-language=python
|Runs-on=GNU/Linux
+
|Runs-on=Windows, OS X, GNU/Linux
 
|Text-creation=documentation-tool
 
|Text-creation=documentation-tool
 
|Use=text-creation
 
|Use=text-creation
 
|Works-with=text
 
|Works-with=text
 +
}}
 +
{{EntryGNU
 +
|Is GNU=No
 
}}
 
}}
 
{{Software prerequisite
 
{{Software prerequisite
 
|Prerequisite kind=Required to use
 
|Prerequisite kind=Required to use
|Prerequisite description=https://github.com/frnmst/fpyutils
+
|Prerequisite description=https://blog.franco.net.eu.org/software/#fpyutils
 
}}
 
}}
 
{{Software prerequisite
 
{{Software prerequisite
 
|Prerequisite kind=Required to use
 
|Prerequisite kind=Required to use
 
|Prerequisite description=Python 3
 
|Prerequisite description=Python 3
 +
}}
 +
{{Software prerequisite
 +
|Prerequisite kind=Required to use
 +
|Prerequisite description=Setuptools
 +
}}
 +
{{Software prerequisite
 +
|Prerequisite kind=Required to build
 +
|Prerequisite description=Flake8
 +
}}
 +
{{Software prerequisite
 +
|Prerequisite kind=Required to build
 +
|Prerequisite description=flake8-docstrings
 +
}}
 +
{{Software prerequisite
 +
|Prerequisite kind=Required to build
 +
|Prerequisite description=Sphinx
 +
}}
 +
{{Software prerequisite
 +
|Prerequisite kind=Required to build
 +
|Prerequisite description=sphinx-book-theme
 +
}}
 +
{{Software prerequisite
 +
|Prerequisite kind=Required to build
 +
|Prerequisite description=sphinx-copybutton
 +
}}
 +
{{Software prerequisite
 +
|Prerequisite kind=Required to build
 +
|Prerequisite description=venv
 +
}}
 +
{{Software prerequisite
 +
|Prerequisite kind=Required to build
 +
|Prerequisite description=python3-build
 +
}}
 +
{{Software prerequisite
 +
|Prerequisite kind=Weak prerequisite
 +
|Prerequisite description=pyfakefs
 +
}}
 +
{{Person}}
 +
{{Resource
 +
|Resource audience=Python (Ref)
 +
|Resource kind=General
 +
|Resource URL=https://pypi.org/project/md-toc
 +
}}
 +
{{Resource
 +
|Resource audience=Users, Developers
 +
|Resource kind=Bug Tracking
 +
|Resource URL=https://software.franco.net.eu.org/frnmst/md-toc/issues
 +
}}
 +
{{Resource
 +
|Resource audience=Users, Developers
 +
|Resource kind=Bug Tracking
 +
|Resource URL=https://github.com/frnmst/md-toc/issues
 +
}}
 +
{{Resource
 +
|Resource audience=Users, Developers
 +
|Resource kind=Bug Tracking
 +
|Resource URL=https://codeberg.org/frnmst/md-toc/issues
 +
}}
 +
{{Resource
 +
|Resource audience=Users, Developers
 +
|Resource kind=Bug Tracking
 +
|Resource URL=https://framagit.org/frnmst/md-toc/-/issues
 +
}}
 +
{{Resource
 +
|Resource audience=Documentation
 +
|Resource kind=Support
 +
|Resource URL=https://docs.franco.net.eu.org/md-toc/
 +
}}
 +
{{Resource
 +
|Resource audience=Users, Developers
 +
|Resource kind=Changelog
 +
|Resource URL=https://blog.franco.net.eu.org/software/CHANGELOG-md-toc.html
 +
}}
 +
{{Resource
 +
|Resource audience=Video
 +
|Resource kind=Support
 +
|Resource URL=https://redirect.invidious.io/watch?v=guyVdPNmC0A
 +
}}
 +
{{Resource
 +
|Resource audience=Video
 +
|Resource kind=Support
 +
|Resource URL=https://redirect.invidious.io/watch?v=6QaW4qv7y1o
 +
}}
 +
{{EntryDetails
 +
|Is High Priority Project=No
 +
|VCS checkout command=git clone https://software.franco.net.eu.org/frnmst/md-toc.git
 +
|Computer languages=Python
 +
|Documentation note=Documentation at: https://docs.franco.net.eu.org/md-toc/
 +
|Decommissioned or Obsolete=No
 +
|Donate=https://www.buymeacoffee.com/frnmst
 +
|Microblog=https://social.franco.net.eu.org/@frnmst
 +
|Related projects=fpyutils
 +
|Keywords=markdown, md, table-of-contents, toc
 +
|Version identifier=9.0.0
 +
|Version date=2024-04-10
 +
|Version status=stable
 +
|Version comment=Release 9.0.0  - API change: cleaner module imports. For example: `md_toc.build_toc` becomes  `md_toc.api.build_toc` - Fix variables: all of them have snake case when possible - Cleanup constants file - Important bug fixes for edge cases inputs - Add `md_toc.api.anchor_link_punctuation_filter` function - Project structure improvements
 +
|Last review by=Frnmst
 +
|Last review date=2024-04-10
 +
|User level=intermediate
 +
|Component programs=Python 3
 +
|Accepts cryptocurrency donations=Yes
 +
|OpenPGP signature=https://blog.franco.net.eu.org/software/md-toc-9.0.0/md-toc-9.0.0.tar.gz.sig
 +
|OpenPGP public key=https://blog.franco.net.eu.org/pubkeys/pgp_pubkey_since_2019.txt
 +
|Test entry=No
 
}}
 
}}
 
{{Featured}}
 
{{Featured}}

Latest revision as of 18:28, 10 April 2024


[edit]

md-toc

https://blog.franco.net.eu.org/software/#md-toc
Automatically generate and add an accurate table of contents to markdown files.

Description

The table of contents (a.k.a: TOC) generated by this program is designed to work with several markdown parsers such as the ones used by GitHub and GitLab.

Rules for generating the TOC are determined by the selected markdown parser. md-toc aimes infact to be as conformant as possible in respect to each one of them. This was possible by studying the available documentations and by reverse engineering the source codes.

GitHub and GitLab have introduced their version of the markdown TOC after md-toc and similar tools were created:

  • in March 2021 GitHub added an interactive TOC button at the top-left of readme files. This system works for markdown and others
  • GitLab added an extension called Table of contents to its Gitlab Flavored Mardown

Features

  • works offline
  • edits file in place using a TOC marker or output to standard output
  • maximum heading level selection (1 to 6)
  • list indentation based on heading, which can optionally be disabled
  • outputs an ordered or unordered TOC list
  • creates anchor links to markdown headings by default or a plain list as alternative
  • checks if heading level is coherent: this avoid creating an erroneous TOC. This feature can be disabled if needed
  • skip any number lines before generating the TOC
  • can read content from standard input
  • handles multiple files at once
  • selection of newline string
  • check if there is difference between existing TOC in file and newly generated one
  • selection of list marker
  • supports GitHub, GitLab, Commonmark, Redcarpet and others
  • pre-commit md-toc hook

And more! See the feature comparison table

Documentation

Documentation at: https://docs.franco.net.eu.org/md-toc/

Related Projects





Licensing

License

Verified by

Verified on

Notes

Verified by

agyaanapan

Verified on

13 June 2021

Notes

See also https://docs.franco.net.eu.org/md-toc/meta.html#copyright-and-license for a list of all the licenses used.




Leaders and contributors

Contact(s)Role


Resources and communication

AudienceResource typeURI
VideoSupporthttps://redirect.invidious.io/watch?v=6QaW4qv7y1o
Users, DevelopersBug Trackinghttps://framagit.org/frnmst/md-toc/-/issues
Users, DevelopersChangeloghttps://blog.franco.net.eu.org/software/CHANGELOG-md-toc.html
Users, DevelopersBug Trackinghttps://software.franco.net.eu.org/frnmst/md-toc/issues
Python (Ref)Generalhttps://pypi.org/project/md-toc
Users, DevelopersBug Trackinghttps://codeberg.org/frnmst/md-toc/issues
DocumentationSupporthttps://docs.franco.net.eu.org/md-toc/
VideoSupporthttps://redirect.invidious.io/watch?v=guyVdPNmC0A
Users, DevelopersBug Trackinghttps://github.com/frnmst/md-toc/issues


Software prerequisites

KindDescription
Required to buildpython3-build
Required to buildflake8-docstrings
Required to buildsphinx-copybutton
Required to buildsphinx-book-theme
Weak prerequisitepyfakefs
Required to buildvenv
Required to usehttps://blog.franco.net.eu.org/software/#fpyutils
Required to buildFlake8
Required to useSetuptools
Required to buildSphinx
Required to usePython 3

This entry (in part or in whole) was last reviewed on 10 April 2024.



Version comment

Release 9.0.0 - API change: cleaner module imports. For example: `md_toc.build_toc` becomes `md_toc.api.build_toc` - Fix variables: all of them have snake case when possible - Cleanup constants file - Important bug fixes for edge cases inputs - Add `md_toc.api.anchor_link_punctuation_filter` function - Project structure improvements


Entry


































"Python (Ref)" is not in the list (General, Help, Bug Tracking, Support, Developer) of allowed values for the "Resource audience" property.


"Users" is not in the list (General, Help, Bug Tracking, Support, Developer) of allowed values for the "Resource audience" property."Developers" is not in the list (General, Help, Bug Tracking, Support, Developer) of allowed values for the "Resource audience" property.


"Users" is not in the list (General, Help, Bug Tracking, Support, Developer) of allowed values for the "Resource audience" property."Developers" is not in the list (General, Help, Bug Tracking, Support, Developer) of allowed values for the "Resource audience" property.


"Users" is not in the list (General, Help, Bug Tracking, Support, Developer) of allowed values for the "Resource audience" property."Developers" is not in the list (General, Help, Bug Tracking, Support, Developer) of allowed values for the "Resource audience" property.


"Users" is not in the list (General, Help, Bug Tracking, Support, Developer) of allowed values for the "Resource audience" property."Developers" is not in the list (General, Help, Bug Tracking, Support, Developer) of allowed values for the "Resource audience" property.


"Documentation" is not in the list (General, Help, Bug Tracking, Support, Developer) of allowed values for the "Resource audience" property.


"Users" is not in the list (General, Help, Bug Tracking, Support, Developer) of allowed values for the "Resource audience" property."Developers" is not in the list (General, Help, Bug Tracking, Support, Developer) of allowed values for the "Resource audience" property.


"Video" is not in the list (General, Help, Bug Tracking, Support, Developer) of allowed values for the "Resource audience" property.


"Video" is not in the list (General, Help, Bug Tracking, Support, Developer) of allowed values for the "Resource audience" property.








Property "Submitted by" (as page type) with input value "{{{Submitted by}}}" contains invalid characters or is incomplete and therefore can cause unexpected results during a query or annotation process. "{{{Submitted date}}}" contains an extrinsic dash or other characters that are invalid for a date interpretation.











Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the page “GNU Free Documentation License”.

The copyright and license notices on this page only apply to the text on this page. Any software or copyright-licenses or other similar notices described in this text has its own copyright notice and license, which can usually be found in the distribution or license text itself.