1.

What is Jinja templating?

Answer»

Jinja Templating is a very POPULAR templating engine for Python, the latest version is Jinja2. 

Some of its features are:

  • Sandbox Execution - This is a sandbox (or a protected) framework for automating the testing process
  • HTML ESCAPING - It PROVIDES automatic HTML Escaping as <, >, & CHARACTERS have special values in templates and if using a regular text, these symbols can lead to XSS Attacks which Jinja DEALS with automatically.
  • Template Inheritance
  • Generates HTML templates much faster than default engine
  • Easier to debug as compared to the default engine.


Discussion

No Comment Found