How to use the jinja.from_string function in Jinja

To help you get started, we’ve selected a few Jinja examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github nipy / nibabel / doc / sphinxext / plot_directive.py View on Github external
def format_template(template, **kw):
        return jinja.from_string(template, **kw)
github rootpy / rootpy / docs / sphinxext / numpydoc / plot_directive.py View on Github external
def format_template(template, **kw):
        return jinja.from_string(template, **kw)
github bioidiap / bob / python / bob / sphinxext / plot.py View on Github external
def format_template(template, **kw):
        return jinja.from_string(template, **kw)
github nguy / artview / docs / sphinxext / numpydoc / plot_directive.py View on Github external
def format_template(template, **kw):
        return jinja.from_string(template, **kw)
github PyTables / PyTables / doc / sphinxext / plot_directive.py View on Github external
def format_template(template, **kw):
        return jinja.from_string(template, **kw)
github pydata / bottleneck / doc / sphinxext / plot_directive.py View on Github external
def format_template(template, **kw):
        return jinja.from_string(template, **kw)
github bionet / ted.python / docs / sphinxext / plot_directive.py View on Github external
def format_template(template, **kw):
        return jinja.from_string(template, **kw)
github numpy / numpydoc / numpydoc / plot_directive.py View on Github external
def format_template(template, **kw):
        return jinja.from_string(template, **kw)
github statsmodels / statsmodels / docs / sphinxext / numpy_ext / plot_directive.py View on Github external
def format_template(template, **kw):
        return jinja.from_string(template, **kw)