aboutsummaryrefslogtreecommitdiffstats
path: root/README.rst
diff options
context:
space:
mode:
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst30
1 files changed, 29 insertions, 1 deletions
diff --git a/README.rst b/README.rst
index 2364f14..eb55ce7 100644
--- a/README.rst
+++ b/README.rst
@@ -94,7 +94,35 @@ In any Rust file inside your crate, add the following:
}
You should now be able to compile and run this code.
-Askama should generate Rust code like below:
+
+
+Debugging and troubleshooting
+-----------------------------
+
+You can debug your the parse tree for a template and the generated code by
+changing the ``template`` attribute item list for the template struct:
+
+.. code-block:: rust
+
+ #[derive(Template)]
+ #[template(path = "hello.html", print = "all")]
+ struct HelloTemplate<'a> { ... }
+
+The ``print`` key can take one of four values:
+
+* ``none`` (the default value)
+* ``ast`` (print the parse tree)
+* ``code`` (print the generated code)
+* ``all`` (print both parse tree and code)
+
+The parse tree looks like this for the example template:
+
+.. code-block::
+
+ [Lit("", "Hello,", " "), Expr(WS(false, false), Var("name")),
+ Lit("", "!", "\n")]
+
+The generated code looks like this:
.. code-block:: rust