Mkdocs Markdown includer plugin.
Project description
mkdocs-include-markdown-plugin
Mkdocs Markdown includer plugin.
Read this document in other languages:
Installation
pip install mkdocs-include-markdown-plugin
Documentation
Setup
Enable the plugin in your mkdocs.yml
:
plugins:
- include-markdown
Make sure that you define
include-markdown
before other plugins that could conflict, likemkdocs-macros-plugin
.
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. This argument also accept globs, in which case certain
paths can be ignored using the exclude
argument.
File paths to include and string arguments can be wrapped by double "
or
single '
quotes, which can be escaped prepending them a \
character as
\"
and \'
.
The arguments start and end may contain usual (Python-style) escape
sequences like \n
to match against newlines.
include-markdown
Includes Markdown files 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 (true): When this option is enabled (default),
every line of the content to include is indented with the same number of
spaces used to indent the includer
{% %}
template. Possible values aretrue
andfalse
. - # 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
true
andfalse
. - #
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 aretrue
andfalse
. - #
heading-offset (0): Increases or decreases the Markdown headings depth
by this number. Only supports number sign (
#
) heading syntax. Accepts negative values to drop leading#
characters. - # exclude: Specify with a glob which files should be ignored. Only useful when passing globs to include multiple files.
- #
trailing-newlines (true): When this option is disabled, the trailing newlines
found in the content to include are stripped. Possible values are
true
andfalse
.
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-markdown "docs/includes/header.md"
heading-offset=1
%}
{%
include-markdown "../LICENSE*"
start="<!--license \"start\" -->"
end='<!--license "end" -->'
exclude="../LICENSE*.rst"
%}
{% include-markdown '/escap\'ed/single-quotes/in/file\'/name.md' %}
include
Includes the content of a file or a group of files.
- # 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 (true): When this option is enabled (default),
every line of the content to include is indented with the same number of
spaces used to indent the includer
{% %}
template. Possible values aretrue
andfalse
. - # dedent (false): If enabled, the included content will be dedented.
- # exclude: Specify with a glob which files should be ignored. Only useful when passing globs to include multiple files.
- #
trailing-newlines (true): When this option is disabled, the trailing newlines
found in the content to include are stripped. Possible values are
true
andfalse
.
Examples
~~~yaml
{% include "../examples/github-minimal.yml" %}
~~~
{%
include "../examples.md"
start="~~~yaml"
end="~~~\n"
%}
{%
include '../LICENSE*'
exclude='../LICENSE*.rst'
%}
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
Hashes for mkdocs_include_markdown_plugin-3.5.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 37a48715d79e80dee863a95ac382a9a49a75ccc1d814c7f64cafd34178a0dcb2 |
|
MD5 | 18cc3c157bad1b2f4674fdac1c727bcb |
|
BLAKE2b-256 | 5c7b6ed5f93dd3e51a0389b3cd500d53d7c82acb3c0c3040c3db96ad0c46cc1c |
Hashes for mkdocs_include_markdown_plugin-3.5.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5b156a82e207d8e673e1dc985776511488e9e4c4344c8fe36b44f79d1d580393 |
|
MD5 | 75567cf162ddb93736ebe60bff7ebe30 |
|
BLAKE2b-256 | be242e6c90df99008b98f3fc16c6dbd858289116a84984f0913680b0f66d7a32 |