KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
mkdocs-jinja2
★ 12
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
crd-validation
:
Generator for crd validation openapi
mutsneedle
:
R package for viewing mutation needle lollipop plot widgets
pg_channels
:
Python wrapper for PostgreSQL NOTIFY and LISTEN commands.
neo-rtags
:
Rtags client for neovim
HDLObf
:
HDL Obfuscator
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
mkdocs-jinja2
?
Download (.md)
This mkdocs plugin allows the use of Jinja2 templates inside Markdown content. It can be useful, for example, to enumerate pages or use the configuration or site navigation data structures from within content. Templates should render to HTML. ## Example ``` {% for year in ['2018', '2017'] %} <h3>{{ year }}</h3> {% for page in pages|sort(attribute='url', reverse=True) %} {{ page.title }} <br /> {% endfor %} {% endfor %} ```