-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
24 lines (15 loc) · 774 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
py-template-runner
==============================================================================
Execute an Mako template specified on the command line and output to stdout
Author: Konrad Markus <[email protected]>
License: See LICENSE
Requires Mako templates:
http://www.makotemplates.org/
Example usage:
$ python template-runner.py example.in/template1.html
[PRINTS RENDERED TEMPLATE TO STDOUT]
$ python template-runner.py example.in/template1.html > example.out/template1.html
[REDIRECTS RENDERED TEMPLATE TO A FILE]
The example.in and example.out directories can be removed.
The in/ and out/ directories are provided as a suggestion, you can use your own structure/naming.
The contents of the in/ and out/ directories is not tracked by git.