Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add example of escaping Handlebars definitions with {% raw %} #193

Merged
merged 1 commit into from
Nov 28, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions webdoc/docs/rendering.md
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,12 @@ which exists for that purpose:
recurse: true
{% endraw %}


The same approach can also be used for inline definitions, e.g.:

You can use the `raw` expression for inline definitions, for example: {% raw %} `{{{method}}}-{{{url}}}.json` {% endraw %} for
escaping 3-bracket expressions often used in Handlebars.

### Solution 5: Altering the syntax of jinja2 for mkdocs-macros

Sometimes the introduction of mkdocs-macros comes late in the chain, and the
Expand Down