summaryrefslogtreecommitdiffstats
path: root/mark.py
diff options
context:
space:
mode:
Diffstat (limited to 'mark.py')
-rw-r--r--mark.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mark.py b/mark.py
index 755ed6f..9c0ec6b 100644
--- a/mark.py
+++ b/mark.py
@@ -38,7 +38,7 @@ def main(**kwargs):
with open(os.path.join("templates", "%s.jinja2" % kwargs["format"]), "r") as f:
jinja_template = jinja2.Template(f.read())
- strout = jinja_template.render(**output, **jinja_helpers._get_helpers())
+ strout = jinja_template.render(**output, **jinja_helpers._get_helpers(), **kwargs)
if output_file == "stdout":
print(strout)