We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi guys,
Working with mardown2, I am trying to generate some jinja2 code. In my markdown file, I have a link that is dynamically set from a configuration.
mardown2
jinja2
[{{config.get_download_link}}]({{config.get_download_link}})
This generates the following output:
<p><a href="{{config.get_download_link}}">{{config.get<em>download</em>link}}</a></p>
It works fine from a markdown perspective, but I would like to avoid computing an HTML output between {{ and }}.
{{
}}
Is there a recommended way ? Any idea ?
The text was updated successfully, but these errors were encountered:
Hey @t00f, what do you mean by avoid computing an HTML output? I'm not sure from your description exactly what you're trying to do.
avoid computing an HTML output
Sorry, something went wrong.
No branches or pull requests
Hi guys,
Working with
mardown2
, I am trying to generate somejinja2
code.In my markdown file, I have a link that is dynamically set from a configuration.
This generates the following output:
It works fine from a markdown perspective, but I would like to avoid computing an HTML output between
{{
and}}
.Is there a recommended way ? Any idea ?
The text was updated successfully, but these errors were encountered: