Generate a Markdown index from any Markdown file.
python
>= 3.8
python3 -m venv venv_markdown_index_generator
Do not forget to source it with the command below:
. venv_markdown_index_generator/bin/activate
pip3 install --upgrade pip
pip3 install -r pip3_requirements.txt
python3 markdown_index_generator.py ./README.md
The output should look like this:
- [Description](#description)
- [Requirements](#requirements)
- [Steps](#steps)
- [1. Create a Python3 venv](#1-create-a-python3-venv)
- [2. Update pip](#2-update-pip)
- [3. Install required Python3 dependencies](#3-install-required-python3-dependencies)
- [4. Run the script by specifying a Markdown file](#4-run-the-script-by-specifying-a-markdown-file)