├── .gitignore ├── CHANGES.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── lektor_markdown_header_anchors.py ├── setup.cfg ├── setup.py ├── tests └── test_plugin.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lektor/lektor-markdown-header-anchors/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lektor/lektor-markdown-header-anchors/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lektor/lektor-markdown-header-anchors/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.md LICENSE 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lektor/lektor-markdown-header-anchors/HEAD/README.md -------------------------------------------------------------------------------- /lektor_markdown_header_anchors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lektor/lektor-markdown-header-anchors/HEAD/lektor_markdown_header_anchors.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lektor/lektor-markdown-header-anchors/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lektor/lektor-markdown-header-anchors/HEAD/tests/test_plugin.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lektor/lektor-markdown-header-anchors/HEAD/tox.ini --------------------------------------------------------------------------------