aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2021-01-11 22:06:37 +0100
committerCharles Cabergs <me@cacharle.xyz>2021-01-11 22:06:37 +0100
commitea7c2a7482b937c4d391402b7a89fb7b9c245992 (patch)
tree562bbf42559cac18d0c566dcd77c64fbfcf36523 /README.md
parentd3c3ae47a2937bf0ace994a4bc9928cd2f3605de (diff)
downloadtemper-master.tar.gz
temper-master.tar.bz2
temper-master.zip
Added rendering of argumentsHEADmaster
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 5 insertions, 2 deletions
diff --git a/README.md b/README.md
index c8feed5..d3cba3d 100644
--- a/README.md
+++ b/README.md
@@ -21,8 +21,8 @@ Put the result of a form in the template with `<%=`.
```html
<ul>
- <% (dotimes (_ 10)) %>
- <li> <%= i %> </li>
+ <% (dotimes (n 10)) %>
+ <li> <%= n %> </li>
<% ) %>
</ul>
```
@@ -49,3 +49,6 @@ Use the `render` function to include a template in another.
and check if `about.lisp.html` exists
* [ ] Makefile to compile and install
* [ ] escape interpolated value
+* [ ] file/directory command line arguments
+* [ ] passing template variable in command line
+* [ ] extends a base template (like Django)