Metadata-Version: 2.1
Name: mkdocs-pages-j2-plugin
Version: 0.1.0
Summary: An MkDocs plugin to generate .pages from pages.j2
Home-page: https://github.com/supcik/mkdocs-pages-j2-plugin
License: Apache-2
Keywords: mkdocs,python,markdown,wiki
Author: Jacques Supcik
Author-email: jacques.supcik@hefr.ch
Requires-Python: >=3.10,<4.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Provides-Extra: test
Requires-Dist: jinja2 (>=3.1.2,<4.0.0)
Requires-Dist: mkdocs (>=1.4.3,<2.0.0)
Requires-Dist: mkdocs-awesome-pages-plugin (>=2.9.1,<3.0.0) ; extra == "test"
Requires-Dist: mkdocs-macros-plugin (>=1.0.1,<2.0.0) ; extra == "test"
Requires-Dist: mkdocs-material (>=9.1.15,<10.0.0) ; extra == "test"
Project-URL: Repository, https://github.com/supcik/mkdocs-pages-j2-plugin
Description-Content-Type: text/markdown

# mkdocs-pages-j2-today

This plugin builds `.pages` files from `.pages.j2` files, using Jinja2 to render the templates.

```text
title: Page Title
nav:
    - Welcome: index.md
{%- for i in range(1,3) %}
    - My Page {{ i }}: p{{ i }}.md
{%- endfor %}
```

