Provides the `includex` macro for more flexible includes.
Project description
includex
Use includex to include anything from any file into your markdown documentation.
Installation
pip install mkdocs-macros mkdocs-macros-includex
Usage
includex can be configured as a pluglet for mkdocs-macros in the mkdocs.yml configuration file:
plugins:
- search
- macros:
modules: ['includex']
Then you can use it to dynamically include file content in your documentation
### Versioning
The version number is defined in the `pyproject.toml` file:
{{ includex("pyproject.toml", start_match="[tool.hatch.version]", code=True, lines=2, caption=True) }}
which would be rendered as
Versioning
The version number is defined in the pyproject.toml file:
[tool.hatch.version]
path = "includex.py"
Comparison to other tools
snippets (pymdown-extensions)
tl;dr
- use snippets if you want to recursively include content
- use includex if you want to include content within macros
- use includex if you want to include sections without special markers
The main use case this solves over snippets is that it includes partial content (i.e. a section or block) from a file as-is (i.e. without the need for special markers).
Snippets partially supports this now since v9.6 added support to include sections by lines.^snippet-lines Further, v9.7 added to support to sections by name, given that they are marked as such using a special marker comment.^snippet-sections
What includex does additionally is to match the start and end of blocks and include them without the need for any markers or line numbers. While this makes the documentation more prone to break, e.g., when the line that is being matched is changed in a way that it no longer matches, it supports some additional use-cases and requires less custom syntax.
Snippets is implemented as a preprocessor, while includex is implemented as a mkdocs-macros pluglet. This means that snippets are evaluated earlier than includex and prohibits snippets to work with other macros, like this:
{% for file in get_files("docs/") %}
{{ includex(file) }}
{% endfor %}
However, sections included using includex are not evaluated themselves, so includex cannot be nested (yet). If you need nested includes, use snippets instead.
Project details
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_macros_includex-0.0.6.tar.gz.
File metadata
- Download URL: mkdocs_macros_includex-0.0.6.tar.gz
- Upload date:
- Size: 16.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.24.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
613fdecc5d1caf86db30662e3bbc42335eeee4e16aad7bd2dbd6b8129fcd8eac
|
|
| MD5 |
b138951addef0ed420fbb19c893fc05c
|
|
| BLAKE2b-256 |
20a5d430b612d61d0f412ff696bed883e4d4445231553d6da236037cb3ae8142
|
File details
Details for the file mkdocs_macros_includex-0.0.6-py3-none-any.whl.
File metadata
- Download URL: mkdocs_macros_includex-0.0.6-py3-none-any.whl
- Upload date:
- Size: 8.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.24.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
521988166eb78ed52c843ddc787e6b4a0dd365cecd2c320fd87883c6d90d6004
|
|
| MD5 |
46d4d86e5c13689b2548853090b14fef
|
|
| BLAKE2b-256 |
cb4bb43691a6005eb327e6b8c23bef447abbf124d38457881bee82dc276bbc4d
|