├── .github └── workflows │ └── python-app.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── coverage.svg ├── docs ├── all_dir │ ├── all_dir.md │ └── all_dir_ignore_heading1.md ├── all_dir_sub │ └── all_dir_sub2 │ │ └── all_dir_sub2_1.md ├── chapter_exclude_all.md ├── chapter_exclude_heading2.md ├── dir │ ├── dir_chapter_exclude_all.md │ └── dir_chapter_ignore_heading3.md ├── index.md ├── toplvl_chapter │ ├── file_in_toplvl_chapter.md │ └── sub_chapter │ │ ├── file1_in_sub_chapter.md │ │ ├── file2_in_sub_chapter.md │ │ └── unreferenced_in_sub_chapter.md ├── unreferenced.md └── without_nav_name.md ├── mkdocs.yml ├── mkdocs_exclude_search ├── __init__.py ├── plugin.py └── utils.py ├── pylintrc ├── requirements_dev.txt ├── setup.py └── tests ├── __init__.py ├── context.py ├── globals.py ├── mock_data ├── config.json └── mock_search_index.json ├── test_plugin.py └── test_utils.py /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrieke/mkdocs-exclude-search/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrieke/mkdocs-exclude-search/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrieke/mkdocs-exclude-search/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrieke/mkdocs-exclude-search/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrieke/mkdocs-exclude-search/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrieke/mkdocs-exclude-search/HEAD/README.md -------------------------------------------------------------------------------- /coverage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrieke/mkdocs-exclude-search/HEAD/coverage.svg -------------------------------------------------------------------------------- /docs/all_dir/all_dir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrieke/mkdocs-exclude-search/HEAD/docs/all_dir/all_dir.md -------------------------------------------------------------------------------- /docs/all_dir/all_dir_ignore_heading1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrieke/mkdocs-exclude-search/HEAD/docs/all_dir/all_dir_ignore_heading1.md -------------------------------------------------------------------------------- /docs/all_dir_sub/all_dir_sub2/all_dir_sub2_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrieke/mkdocs-exclude-search/HEAD/docs/all_dir_sub/all_dir_sub2/all_dir_sub2_1.md -------------------------------------------------------------------------------- /docs/chapter_exclude_all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrieke/mkdocs-exclude-search/HEAD/docs/chapter_exclude_all.md -------------------------------------------------------------------------------- /docs/chapter_exclude_heading2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrieke/mkdocs-exclude-search/HEAD/docs/chapter_exclude_heading2.md -------------------------------------------------------------------------------- /docs/dir/dir_chapter_exclude_all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrieke/mkdocs-exclude-search/HEAD/docs/dir/dir_chapter_exclude_all.md -------------------------------------------------------------------------------- /docs/dir/dir_chapter_ignore_heading3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrieke/mkdocs-exclude-search/HEAD/docs/dir/dir_chapter_ignore_heading3.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrieke/mkdocs-exclude-search/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/toplvl_chapter/file_in_toplvl_chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrieke/mkdocs-exclude-search/HEAD/docs/toplvl_chapter/file_in_toplvl_chapter.md -------------------------------------------------------------------------------- /docs/toplvl_chapter/sub_chapter/file1_in_sub_chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrieke/mkdocs-exclude-search/HEAD/docs/toplvl_chapter/sub_chapter/file1_in_sub_chapter.md -------------------------------------------------------------------------------- /docs/toplvl_chapter/sub_chapter/file2_in_sub_chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrieke/mkdocs-exclude-search/HEAD/docs/toplvl_chapter/sub_chapter/file2_in_sub_chapter.md -------------------------------------------------------------------------------- /docs/toplvl_chapter/sub_chapter/unreferenced_in_sub_chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrieke/mkdocs-exclude-search/HEAD/docs/toplvl_chapter/sub_chapter/unreferenced_in_sub_chapter.md -------------------------------------------------------------------------------- /docs/unreferenced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrieke/mkdocs-exclude-search/HEAD/docs/unreferenced.md -------------------------------------------------------------------------------- /docs/without_nav_name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrieke/mkdocs-exclude-search/HEAD/docs/without_nav_name.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrieke/mkdocs-exclude-search/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /mkdocs_exclude_search/__init__.py: -------------------------------------------------------------------------------- 1 | from .plugin import ExcludeSearch 2 | -------------------------------------------------------------------------------- /mkdocs_exclude_search/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrieke/mkdocs-exclude-search/HEAD/mkdocs_exclude_search/plugin.py -------------------------------------------------------------------------------- /mkdocs_exclude_search/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrieke/mkdocs-exclude-search/HEAD/mkdocs_exclude_search/utils.py -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrieke/mkdocs-exclude-search/HEAD/pylintrc -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrieke/mkdocs-exclude-search/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrieke/mkdocs-exclude-search/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrieke/mkdocs-exclude-search/HEAD/tests/context.py -------------------------------------------------------------------------------- /tests/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrieke/mkdocs-exclude-search/HEAD/tests/globals.py -------------------------------------------------------------------------------- /tests/mock_data/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrieke/mkdocs-exclude-search/HEAD/tests/mock_data/config.json -------------------------------------------------------------------------------- /tests/mock_data/mock_search_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrieke/mkdocs-exclude-search/HEAD/tests/mock_data/mock_search_index.json -------------------------------------------------------------------------------- /tests/test_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrieke/mkdocs-exclude-search/HEAD/tests/test_plugin.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrieke/mkdocs-exclude-search/HEAD/tests/test_utils.py --------------------------------------------------------------------------------