mmw - Minimal template engine
ssh://anon@thyssentishman.com/mmw
Log | Files | Refs | Feed | Contribute | README | LICENSE

Commit: fa9351c047b7fbc281a007c3cd5b3226afdbc1f4
Parent: 0ba74bc219026902a6af11ab4ff8b497e8a26460
Author: Johannes Thyssen Tishman
Date:   Thu,  1 Aug 2024 18:49:29 +0000

README: Warn about recursion

Diffstat:
M README | 2 +-

1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README b/README
@@ -43,7 +43,7 @@ Everything on a line before the colon (':') is the key or variable name, and
 everything after it, its value. Leading and trailing white spaces in keys and
 values will be trimmed. The rest of <file>'s content will be stored into a
 special variable named 'content'. Other than that, variables can be named
-anything and used within <file> itself and in templates.
+anything and used within <file> itself (beware of recursion) and in templates.
 
 For variables to be expanded, they are to be surrounded with curly braces
 ('{}') and prepended with a dollar sign ('$'), e.g. ${title}. One may use an