Mkdocs Markdown includer plugin.
Project description
mkdocs-include-markdown-plugin
Mkdocs Markdown includer plugin.
Status
Installation
pip install mkdocs-include-markdown-plugin
Documentation
Setup
Enable the plugin in your mkdocs.yml:
plugins:
- include-markdown
Reference
This plugin provides two directives, one to include markdown files and another to include files of any type. Paths of included files can be absolute or relative to the path of the file that includes them:
include-markdown
Includes markdown file content, optionally using two delimiters to filter the content to include.
- start: Delimiter that marks the beginning of the content to include.
- end: Delimiter that marks the end of the content to include.
- preserve_includer_indent (false): When this option is enabled, every
line of the content to include is indented with the same number of spaces
used to indent the includer
{% %}template. Possible values aretrueandfalse. - dedent (false): If enabled, the included content will be dedented.
- rewrite_relative_urls (true): When this option is enabled (default),
Markdown links and images in the content that are specified by a relative URL
are rewritten to work correctly in their new location. Possible values are
trueandfalse. - comments (true): When this option is enabled (default), the content to
include is wrapped by
<!-- BEGIN INCLUDE -->and<!-- END INCLUDE -->comments which help to identify that the content has been included. Possible values aretrueandfalse.
Note that the start and end strings may contain usual (Python-style) escape sequences like
\n, which is handy if you need to match on a multi-line start or end trigger.
Examples
{%
include-markdown "../README.md"
start="<!--intro-start-->"
end="<!--intro-end-->"
%}
{%
include-markdown "docs/includes/header.md"
start="<!--\n\ttable-start\n-->"
end="<!--\n\ttable-end\n-->"
rewrite_relative_urls=false
comments=false
%}
include
Includes the content of a file.
- start: Delimiter that marks the beginning of the content to include.
- end: Delimiter that marks the end of the content to include.
- preserve_includer_indent (false): When this option is enabled, every
line of the content to include is indented with the same number of spaces
used to indent the includer
{% %}template. Possible values aretrueandfalse. - dedent (false): If enabled, the included content will be dedented.
Note that the start and end strings may contain usual (Python-style) escape sequences like
\n, which is handy if you need to match on a multi-line start or end trigger.
Examples
~~~yaml
{% include "../examples/github-minimal.yml" %}
~~~
{%
include "../examples/__main__.py"
start="~~~yaml"
end="~~~\n"
preserve_includer_indent=true
%}
Acknowledgment
- Joe Rickerby and contributors for giving me the permissions to separate this plugin from the documentation of cibuildwheel.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mkdocs_include_markdown_plugin-2.7.2.tar.gz.
File metadata
- Download URL: mkdocs_include_markdown_plugin-2.7.2.tar.gz
- Upload date:
- Size: 11.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f961ed1db8324a645c661ea5d3e2aef892bd466a56c7a87930e1ae1cf5ea178
|
|
| MD5 |
a65f5d8b35f4dfacf3a497f27fbc4cd4
|
|
| BLAKE2b-256 |
4c77e94727517d1ccd1bfda9dffffa97436129e5481f51825f276e9a8d5f1ee9
|
File details
Details for the file mkdocs_include_markdown_plugin-2.7.2-py3-none-any.whl.
File metadata
- Download URL: mkdocs_include_markdown_plugin-2.7.2-py3-none-any.whl
- Upload date:
- Size: 11.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc3d2766e04b3e7789472e7e160549f9149084065c902f10888409adbd91b80e
|
|
| MD5 |
dceea7178a67f03dd829a88465a0c88c
|
|
| BLAKE2b-256 |
2f1b17bd303afefff9eb017aacaaedb432fb71dd5a547623147146d6ab15ada7
|