Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Rendering is changing data into something <variable> ------->  into "value". 

Parsing takes raw data or input and converts it a data structure, or structures that can be analyzed. 


Jinja2 - 101 - Intro to Jinja2 template building

Widget Connector
urlhttps://vimeo.com/120005103

...

Code Block
titlejinja2 module
 With Python: ( use extensively by ANsibleAnsible)

>>> from jinja2 import Template

>>> template = Template('Hello {{ name }}!')

>>> template.render(name='John Doe')

'Hello John Doe!'

...