├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── dev-requirements.txt ├── htmlproofer ├── __init__.py └── plugin.py ├── publish.sh ├── pyproject.toml ├── setup.py └── tests ├── integration ├── docs │ ├── assets │ │ └── hello-world.drawio.svg │ ├── index.md │ ├── nested │ │ ├── nested2 │ │ │ └── page3.md │ │ ├── page1.md │ │ └── page2.md │ └── page4.md └── mkdocs.yml └── unit └── test_plugin.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuzhang/mkdocs-htmlproofer-plugin/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuzhang/mkdocs-htmlproofer-plugin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuzhang/mkdocs-htmlproofer-plugin/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuzhang/mkdocs-htmlproofer-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuzhang/mkdocs-htmlproofer-plugin/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuzhang/mkdocs-htmlproofer-plugin/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuzhang/mkdocs-htmlproofer-plugin/HEAD/README.md -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuzhang/mkdocs-htmlproofer-plugin/HEAD/dev-requirements.txt -------------------------------------------------------------------------------- /htmlproofer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htmlproofer/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuzhang/mkdocs-htmlproofer-plugin/HEAD/htmlproofer/plugin.py -------------------------------------------------------------------------------- /publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuzhang/mkdocs-htmlproofer-plugin/HEAD/publish.sh -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuzhang/mkdocs-htmlproofer-plugin/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuzhang/mkdocs-htmlproofer-plugin/HEAD/setup.py -------------------------------------------------------------------------------- /tests/integration/docs/assets/hello-world.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuzhang/mkdocs-htmlproofer-plugin/HEAD/tests/integration/docs/assets/hello-world.drawio.svg -------------------------------------------------------------------------------- /tests/integration/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuzhang/mkdocs-htmlproofer-plugin/HEAD/tests/integration/docs/index.md -------------------------------------------------------------------------------- /tests/integration/docs/nested/nested2/page3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuzhang/mkdocs-htmlproofer-plugin/HEAD/tests/integration/docs/nested/nested2/page3.md -------------------------------------------------------------------------------- /tests/integration/docs/nested/page1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuzhang/mkdocs-htmlproofer-plugin/HEAD/tests/integration/docs/nested/page1.md -------------------------------------------------------------------------------- /tests/integration/docs/nested/page2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuzhang/mkdocs-htmlproofer-plugin/HEAD/tests/integration/docs/nested/page2.md -------------------------------------------------------------------------------- /tests/integration/docs/page4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuzhang/mkdocs-htmlproofer-plugin/HEAD/tests/integration/docs/page4.md -------------------------------------------------------------------------------- /tests/integration/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuzhang/mkdocs-htmlproofer-plugin/HEAD/tests/integration/mkdocs.yml -------------------------------------------------------------------------------- /tests/unit/test_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuzhang/mkdocs-htmlproofer-plugin/HEAD/tests/unit/test_plugin.py --------------------------------------------------------------------------------