├── .codecov.yml ├── .github ├── FUNDING.yml └── workflows │ ├── pythonpublish.yml │ ├── unittests.yml │ └── unittests_codecov.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── demo_screencast.gif ├── mkdocs_enumerate_headings_plugin ├── __init__.py ├── exclude.py ├── heading.py ├── html_page.py └── plugin.py ├── setup.py └── tests ├── __init__.py ├── fixtures ├── pages │ ├── edge-cases-enumerated.md │ ├── edge-cases.md │ ├── empty-enumerated.md │ ├── empty.md │ ├── missing-heading-1-enumerated.md │ ├── missing-heading-1.md │ ├── multiple-heading-1-enumerated.md │ ├── multiple-heading-1.md │ ├── no-headings-enumerated.md │ ├── no-headings.md │ ├── only_yaml-enumerated.md │ ├── only_yaml.md │ ├── simple-enumerated.md │ ├── simple.md │ ├── skip-heading-1-enumerated.md │ ├── skip-heading-1.md │ ├── with_codeblock-enumerated.md │ └── with_codeblock.md └── projects │ ├── awesome_pages │ ├── docs │ │ ├── .pages │ │ ├── index.md │ │ ├── section1 │ │ │ ├── .pages │ │ │ ├── page1.md │ │ │ └── page2.md │ │ └── section2 │ │ │ ├── .pages │ │ │ ├── page3.md │ │ │ └── page4.md │ ├── mkdocs.yml │ └── mkdocs_enum_first.yml │ ├── demo │ ├── docs │ │ ├── index.md │ │ ├── one.md │ │ └── two.md │ └── mkdocs.yml │ ├── material │ ├── docs │ │ ├── 01.Introduction │ │ │ ├── .pages │ │ │ ├── Empty-File.md │ │ │ ├── Missing-Heading-1.md │ │ │ └── My-Page-Name.md │ │ └── index.md │ ├── mkdocs.yml │ └── mkdocs_permalink.yml │ ├── monorepo_ok │ ├── docs │ │ └── index.md │ ├── mkdocs.yml │ ├── mkdocs_enum_first.yml │ └── project-a │ │ ├── docs │ │ ├── README.md │ │ └── subfolder │ │ │ └── another_page.md │ │ └── mkdocs.yml │ ├── monorepo_sample_docs │ ├── docs │ │ ├── authentication.md │ │ └── index.md │ ├── mkdocs.yml │ ├── mkdocs_enum_first.yml │ ├── v1 │ │ ├── docs │ │ │ ├── changelog.md │ │ │ └── reference.md │ │ └── mkdocs.yml │ └── v2 │ │ ├── docs │ │ ├── changelog.md │ │ ├── migrating.md │ │ └── reference.md │ │ └── mkdocs.yml │ ├── pymarkx_snippet │ ├── docs │ │ ├── index.md │ │ ├── page.md │ │ └── snippet.md │ ├── extra_page.md │ ├── mkdocs.yml │ └── mkdocs_with_nav.yml │ ├── simple │ ├── docs │ │ ├── a_third_page.md │ │ ├── index.md │ │ ├── two_h1.md │ │ └── zero_h1.md │ ├── mkdocs.yml │ ├── mkdocs_notstrict.yml │ ├── mkdocs_notstrict_depth1.yml │ ├── mkdocs_notstrict_depth7.yml │ └── mkdocs_with_nav.yml │ ├── simple_no_h1_start │ ├── docs │ │ ├── a.md │ │ ├── b.md │ │ └── index.md │ └── mkdocs.yml │ └── simple_with_empty_pages │ ├── docs │ ├── a.md │ ├── b.md │ ├── c.md │ ├── d.md │ ├── e.md │ └── f.md │ └── mkdocs.yml ├── test_builds.py ├── test_heading.py ├── test_html_page.py └── test_requirements.txt /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [timvink] 4 | -------------------------------------------------------------------------------- /.github/workflows/pythonpublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/.github/workflows/pythonpublish.yml -------------------------------------------------------------------------------- /.github/workflows/unittests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/.github/workflows/unittests.yml -------------------------------------------------------------------------------- /.github/workflows/unittests_codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/.github/workflows/unittests_codecov.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/README.md -------------------------------------------------------------------------------- /demo_screencast.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/demo_screencast.gif -------------------------------------------------------------------------------- /mkdocs_enumerate_headings_plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkdocs_enumerate_headings_plugin/exclude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/mkdocs_enumerate_headings_plugin/exclude.py -------------------------------------------------------------------------------- /mkdocs_enumerate_headings_plugin/heading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/mkdocs_enumerate_headings_plugin/heading.py -------------------------------------------------------------------------------- /mkdocs_enumerate_headings_plugin/html_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/mkdocs_enumerate_headings_plugin/html_page.py -------------------------------------------------------------------------------- /mkdocs_enumerate_headings_plugin/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/mkdocs_enumerate_headings_plugin/plugin.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/pages/edge-cases-enumerated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/pages/edge-cases-enumerated.md -------------------------------------------------------------------------------- /tests/fixtures/pages/edge-cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/pages/edge-cases.md -------------------------------------------------------------------------------- /tests/fixtures/pages/empty-enumerated.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/pages/empty.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/pages/missing-heading-1-enumerated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/pages/missing-heading-1-enumerated.md -------------------------------------------------------------------------------- /tests/fixtures/pages/missing-heading-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/pages/missing-heading-1.md -------------------------------------------------------------------------------- /tests/fixtures/pages/multiple-heading-1-enumerated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/pages/multiple-heading-1-enumerated.md -------------------------------------------------------------------------------- /tests/fixtures/pages/multiple-heading-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/pages/multiple-heading-1.md -------------------------------------------------------------------------------- /tests/fixtures/pages/no-headings-enumerated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/pages/no-headings-enumerated.md -------------------------------------------------------------------------------- /tests/fixtures/pages/no-headings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/pages/no-headings.md -------------------------------------------------------------------------------- /tests/fixtures/pages/only_yaml-enumerated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/pages/only_yaml-enumerated.md -------------------------------------------------------------------------------- /tests/fixtures/pages/only_yaml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/pages/only_yaml.md -------------------------------------------------------------------------------- /tests/fixtures/pages/simple-enumerated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/pages/simple-enumerated.md -------------------------------------------------------------------------------- /tests/fixtures/pages/simple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/pages/simple.md -------------------------------------------------------------------------------- /tests/fixtures/pages/skip-heading-1-enumerated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/pages/skip-heading-1-enumerated.md -------------------------------------------------------------------------------- /tests/fixtures/pages/skip-heading-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/pages/skip-heading-1.md -------------------------------------------------------------------------------- /tests/fixtures/pages/with_codeblock-enumerated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/pages/with_codeblock-enumerated.md -------------------------------------------------------------------------------- /tests/fixtures/pages/with_codeblock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/pages/with_codeblock.md -------------------------------------------------------------------------------- /tests/fixtures/projects/awesome_pages/docs/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/awesome_pages/docs/.pages -------------------------------------------------------------------------------- /tests/fixtures/projects/awesome_pages/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/awesome_pages/docs/index.md -------------------------------------------------------------------------------- /tests/fixtures/projects/awesome_pages/docs/section1/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/awesome_pages/docs/section1/.pages -------------------------------------------------------------------------------- /tests/fixtures/projects/awesome_pages/docs/section1/page1.md: -------------------------------------------------------------------------------- 1 | # Page 1 -------------------------------------------------------------------------------- /tests/fixtures/projects/awesome_pages/docs/section1/page2.md: -------------------------------------------------------------------------------- 1 | # Page 2 -------------------------------------------------------------------------------- /tests/fixtures/projects/awesome_pages/docs/section2/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/awesome_pages/docs/section2/.pages -------------------------------------------------------------------------------- /tests/fixtures/projects/awesome_pages/docs/section2/page3.md: -------------------------------------------------------------------------------- 1 | # Page 3 -------------------------------------------------------------------------------- /tests/fixtures/projects/awesome_pages/docs/section2/page4.md: -------------------------------------------------------------------------------- 1 | # Page 4 2 | 3 | fourth page. -------------------------------------------------------------------------------- /tests/fixtures/projects/awesome_pages/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/awesome_pages/mkdocs.yml -------------------------------------------------------------------------------- /tests/fixtures/projects/awesome_pages/mkdocs_enum_first.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/awesome_pages/mkdocs_enum_first.yml -------------------------------------------------------------------------------- /tests/fixtures/projects/demo/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/demo/docs/index.md -------------------------------------------------------------------------------- /tests/fixtures/projects/demo/docs/one.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/demo/docs/one.md -------------------------------------------------------------------------------- /tests/fixtures/projects/demo/docs/two.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/demo/docs/two.md -------------------------------------------------------------------------------- /tests/fixtures/projects/demo/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/demo/mkdocs.yml -------------------------------------------------------------------------------- /tests/fixtures/projects/material/docs/01.Introduction/.pages: -------------------------------------------------------------------------------- 1 | title: Introduction 2 | arrange: 3 | - Empty-File.md -------------------------------------------------------------------------------- /tests/fixtures/projects/material/docs/01.Introduction/Empty-File.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/projects/material/docs/01.Introduction/Missing-Heading-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/material/docs/01.Introduction/Missing-Heading-1.md -------------------------------------------------------------------------------- /tests/fixtures/projects/material/docs/01.Introduction/My-Page-Name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/material/docs/01.Introduction/My-Page-Name.md -------------------------------------------------------------------------------- /tests/fixtures/projects/material/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/material/docs/index.md -------------------------------------------------------------------------------- /tests/fixtures/projects/material/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/material/mkdocs.yml -------------------------------------------------------------------------------- /tests/fixtures/projects/material/mkdocs_permalink.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/material/mkdocs_permalink.yml -------------------------------------------------------------------------------- /tests/fixtures/projects/monorepo_ok/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/monorepo_ok/docs/index.md -------------------------------------------------------------------------------- /tests/fixtures/projects/monorepo_ok/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/monorepo_ok/mkdocs.yml -------------------------------------------------------------------------------- /tests/fixtures/projects/monorepo_ok/mkdocs_enum_first.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/monorepo_ok/mkdocs_enum_first.yml -------------------------------------------------------------------------------- /tests/fixtures/projects/monorepo_ok/project-a/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/monorepo_ok/project-a/docs/README.md -------------------------------------------------------------------------------- /tests/fixtures/projects/monorepo_ok/project-a/docs/subfolder/another_page.md: -------------------------------------------------------------------------------- 1 | # another one -------------------------------------------------------------------------------- /tests/fixtures/projects/monorepo_ok/project-a/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/monorepo_ok/project-a/mkdocs.yml -------------------------------------------------------------------------------- /tests/fixtures/projects/monorepo_sample_docs/docs/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/monorepo_sample_docs/docs/authentication.md -------------------------------------------------------------------------------- /tests/fixtures/projects/monorepo_sample_docs/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/monorepo_sample_docs/docs/index.md -------------------------------------------------------------------------------- /tests/fixtures/projects/monorepo_sample_docs/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/monorepo_sample_docs/mkdocs.yml -------------------------------------------------------------------------------- /tests/fixtures/projects/monorepo_sample_docs/mkdocs_enum_first.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/monorepo_sample_docs/mkdocs_enum_first.yml -------------------------------------------------------------------------------- /tests/fixtures/projects/monorepo_sample_docs/v1/docs/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/monorepo_sample_docs/v1/docs/changelog.md -------------------------------------------------------------------------------- /tests/fixtures/projects/monorepo_sample_docs/v1/docs/reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/monorepo_sample_docs/v1/docs/reference.md -------------------------------------------------------------------------------- /tests/fixtures/projects/monorepo_sample_docs/v1/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/monorepo_sample_docs/v1/mkdocs.yml -------------------------------------------------------------------------------- /tests/fixtures/projects/monorepo_sample_docs/v2/docs/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/monorepo_sample_docs/v2/docs/changelog.md -------------------------------------------------------------------------------- /tests/fixtures/projects/monorepo_sample_docs/v2/docs/migrating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/monorepo_sample_docs/v2/docs/migrating.md -------------------------------------------------------------------------------- /tests/fixtures/projects/monorepo_sample_docs/v2/docs/reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/monorepo_sample_docs/v2/docs/reference.md -------------------------------------------------------------------------------- /tests/fixtures/projects/monorepo_sample_docs/v2/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/monorepo_sample_docs/v2/mkdocs.yml -------------------------------------------------------------------------------- /tests/fixtures/projects/pymarkx_snippet/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/pymarkx_snippet/docs/index.md -------------------------------------------------------------------------------- /tests/fixtures/projects/pymarkx_snippet/docs/page.md: -------------------------------------------------------------------------------- 1 | # Another page 2 | 3 | Lorem ipsum -------------------------------------------------------------------------------- /tests/fixtures/projects/pymarkx_snippet/docs/snippet.md: -------------------------------------------------------------------------------- 1 | --8<-- "extra_page.md" -------------------------------------------------------------------------------- /tests/fixtures/projects/pymarkx_snippet/extra_page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/pymarkx_snippet/extra_page.md -------------------------------------------------------------------------------- /tests/fixtures/projects/pymarkx_snippet/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/pymarkx_snippet/mkdocs.yml -------------------------------------------------------------------------------- /tests/fixtures/projects/pymarkx_snippet/mkdocs_with_nav.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/pymarkx_snippet/mkdocs_with_nav.yml -------------------------------------------------------------------------------- /tests/fixtures/projects/simple/docs/a_third_page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/simple/docs/a_third_page.md -------------------------------------------------------------------------------- /tests/fixtures/projects/simple/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/simple/docs/index.md -------------------------------------------------------------------------------- /tests/fixtures/projects/simple/docs/two_h1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/simple/docs/two_h1.md -------------------------------------------------------------------------------- /tests/fixtures/projects/simple/docs/zero_h1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/simple/docs/zero_h1.md -------------------------------------------------------------------------------- /tests/fixtures/projects/simple/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/simple/mkdocs.yml -------------------------------------------------------------------------------- /tests/fixtures/projects/simple/mkdocs_notstrict.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/simple/mkdocs_notstrict.yml -------------------------------------------------------------------------------- /tests/fixtures/projects/simple/mkdocs_notstrict_depth1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/simple/mkdocs_notstrict_depth1.yml -------------------------------------------------------------------------------- /tests/fixtures/projects/simple/mkdocs_notstrict_depth7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/simple/mkdocs_notstrict_depth7.yml -------------------------------------------------------------------------------- /tests/fixtures/projects/simple/mkdocs_with_nav.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/simple/mkdocs_with_nav.yml -------------------------------------------------------------------------------- /tests/fixtures/projects/simple_no_h1_start/docs/a.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/simple_no_h1_start/docs/a.md -------------------------------------------------------------------------------- /tests/fixtures/projects/simple_no_h1_start/docs/b.md: -------------------------------------------------------------------------------- 1 | # page b -------------------------------------------------------------------------------- /tests/fixtures/projects/simple_no_h1_start/docs/index.md: -------------------------------------------------------------------------------- 1 | # Homepage -------------------------------------------------------------------------------- /tests/fixtures/projects/simple_no_h1_start/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/simple_no_h1_start/mkdocs.yml -------------------------------------------------------------------------------- /tests/fixtures/projects/simple_with_empty_pages/docs/a.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/projects/simple_with_empty_pages/docs/b.md: -------------------------------------------------------------------------------- 1 | # heading page b -------------------------------------------------------------------------------- /tests/fixtures/projects/simple_with_empty_pages/docs/c.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: YAML Frontmatter 3 | --- 4 | -------------------------------------------------------------------------------- /tests/fixtures/projects/simple_with_empty_pages/docs/d.md: -------------------------------------------------------------------------------- 1 | # heading page d -------------------------------------------------------------------------------- /tests/fixtures/projects/simple_with_empty_pages/docs/e.md: -------------------------------------------------------------------------------- 1 | no heading on this page -------------------------------------------------------------------------------- /tests/fixtures/projects/simple_with_empty_pages/docs/f.md: -------------------------------------------------------------------------------- 1 | #heading page f, but wrong format -------------------------------------------------------------------------------- /tests/fixtures/projects/simple_with_empty_pages/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/fixtures/projects/simple_with_empty_pages/mkdocs.yml -------------------------------------------------------------------------------- /tests/test_builds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/test_builds.py -------------------------------------------------------------------------------- /tests/test_heading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/test_heading.py -------------------------------------------------------------------------------- /tests/test_html_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/test_html_page.py -------------------------------------------------------------------------------- /tests/test_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvink/mkdocs-enumerate-headings-plugin/HEAD/tests/test_requirements.txt --------------------------------------------------------------------------------