summaryrefslogtreecommitdiff
path: root/coverage/templite.py
diff options
context:
space:
mode:
Diffstat (limited to 'coverage/templite.py')
-rw-r--r--coverage/templite.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/coverage/templite.py b/coverage/templite.py
index 8595b86..f131f74 100644
--- a/coverage/templite.py
+++ b/coverage/templite.py
@@ -1,7 +1,12 @@
# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
# For details: https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt
-"""A simple Python template renderer, for a nano-subset of Django syntax."""
+"""A simple Python template renderer, for a nano-subset of Django syntax.
+
+For a detailed discussion of this code, see this chapter from 500 Lines:
+http://aosabook.org/en/500L/a-template-engine.html
+
+"""
# Coincidentally named the same as http://code.activestate.com/recipes/496702/