A mkdocs plugin that lets you include files or trees.
Project description
File include plugin for mkdocs
This repo was forked from mkdocs-exclude plugin.
mkdocs-include
is a
mkdocs plugin that allows you
to include files from your input using unix-style wildcards (globs) or
regular expressions (regexes).
This implements what people were asking for in some mkdocs bugs, such as https://github.com/mkdocs/mkdocs/issues/1500 and https://github.com/mkdocs/mkdocs/issues/1152.
Quick start
-
Install the module using pip:
pip3 install mkdocs-include
-
In your project, add a plugin configuration to
mkdocs.yml
:plugins: - include
or
plugins: - include: glob: - include/this/path/* - "*.tmp" - "*.pdf" - "*.gz" regex: - '.*\.(tmp|bin|tar)$'
You can provide zero or more patterns of each type. (If you don't provide any patterns, then nothing will happen!)
Note! Because of peculiarity of yaml syntax, the glob:
and regex:
lines
must not start with a dash, but the lines under them must start with
a dash.
Also because of yaml, patterns that start with a punctuation mark must be quoted.
When writing regexes, it's best to use single quotes rather than double quotes, so that your regex backslash escapes are preserved correctly without having to be doubled up.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for mkdocs_include-1.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2d147537c168f55e28031700d16634745a8dcb3c699f9477492b3465fe65fac9 |
|
MD5 | 7cd04a6a03e7b5ff9612967abbf2b35f |
|
BLAKE2b-256 | 8e358463e70a6862c349fbd027985a25bc3effb7e7fd57f1b483e088d998fd73 |