just playing with tangled
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

poetry: add the include-markdown MkDocs plugin

+46 -1
+1
mkdocs.yml
··· 32 32 version: 33 33 provider: mike 34 34 plugins: 35 + - include-markdown # For the CLI reference 35 36 - search 36 37 - redirects: 37 38 redirect_maps:
+44 -1
poetry.lock
··· 18 18 dev = ["freezegun (>=1.0,<2.0)", "pytest (>=6.0)", "pytest-cov"] 19 19 20 20 [[package]] 21 + name = "bracex" 22 + version = "2.4" 23 + description = "Bash style brace expander." 24 + optional = false 25 + python-versions = ">=3.8" 26 + files = [ 27 + {file = "bracex-2.4-py3-none-any.whl", hash = "sha256:efdc71eff95eaff5e0f8cfebe7d01adf2c8637c8c92edaf63ef348c241a82418"}, 28 + {file = "bracex-2.4.tar.gz", hash = "sha256:a27eaf1df42cf561fed58b7a8f3fdf129d1ea16a81e1fadd1d17989bc6384beb"}, 29 + ] 30 + 31 + [[package]] 21 32 name = "certifi" 22 33 version = "2023.11.17" 23 34 description = "Python package for providing Mozilla's CA Bundle." ··· 416 427 min-versions = ["babel (==2.9.0)", "click (==7.0)", "colorama (==0.4)", "ghp-import (==1.0)", "importlib-metadata (==4.3)", "jinja2 (==2.11.1)", "markdown (==3.2.1)", "markupsafe (==2.0.1)", "mergedeep (==1.3.4)", "packaging (==20.5)", "pathspec (==0.11.1)", "platformdirs (==2.2.0)", "pyyaml (==5.1)", "pyyaml-env-tag (==0.1)", "typing-extensions (==3.10)", "watchdog (==2.0)"] 417 428 418 429 [[package]] 430 + name = "mkdocs-include-markdown-plugin" 431 + version = "6.0.4" 432 + description = "Mkdocs Markdown includer plugin." 433 + optional = false 434 + python-versions = ">=3.8" 435 + files = [ 436 + {file = "mkdocs_include_markdown_plugin-6.0.4-py3-none-any.whl", hash = "sha256:e7b8b5ecc41d6a3e16969cff3725ec3a391b68e9dfe1a4b4e36a8508becda835"}, 437 + {file = "mkdocs_include_markdown_plugin-6.0.4.tar.gz", hash = "sha256:523c9c3a1d6a517386dc11bf60b0c0c564af1071bb6de8d213106d54f752dcc1"}, 438 + ] 439 + 440 + [package.dependencies] 441 + mkdocs = ">=1.4" 442 + wcmatch = ">=8,<9" 443 + 444 + [package.extras] 445 + cache = ["platformdirs"] 446 + 447 + [[package]] 419 448 name = "mkdocs-material" 420 449 version = "9.5.3" 421 450 description = "Documentation that simply works" ··· 869 898 watchmedo = ["PyYAML (>=3.10)"] 870 899 871 900 [[package]] 901 + name = "wcmatch" 902 + version = "8.5" 903 + description = "Wildcard/glob file name matcher." 904 + optional = false 905 + python-versions = ">=3.8" 906 + files = [ 907 + {file = "wcmatch-8.5-py3-none-any.whl", hash = "sha256:14554e409b142edeefab901dc68ad570b30a72a8ab9a79106c5d5e9a6d241bd5"}, 908 + {file = "wcmatch-8.5.tar.gz", hash = "sha256:86c17572d0f75cbf3bcb1a18f3bf2f9e72b39a9c08c9b4a74e991e1882a8efb3"}, 909 + ] 910 + 911 + [package.dependencies] 912 + bracex = ">=2.1.1" 913 + 914 + [[package]] 872 915 name = "zipp" 873 916 version = "3.17.0" 874 917 description = "Backport of pathlib-compatible object wrapper for zip files" ··· 886 929 [metadata] 887 930 lock-version = "2.0" 888 931 python-versions = "^3.8" 889 - content-hash = "658a54af430d9a471ab360b74069a27f2836843cc852134d9a73eb21080f9327" 932 + content-hash = "9fd3db19cfcc4593d456d9d56e24678882e7c7abd11e4fd1bff7d07269d9b7af"
+1
pyproject.toml
··· 21 21 mkdocs-redirects = "^1.2.1" 22 22 # Versioning of documentation 23 23 mike = "^2.0.0" 24 + mkdocs-include-markdown-plugin = "^6.0.4" 24 25 25 26 [build-system] 26 27 requires = ["poetry-core>=1.0.0"]