=== modified file 'README' --- README 2013-09-30 16:31:33 +0000 +++ README 2013-08-14 21:29:03 +0000 @@ -1,37 +1,3 @@ -Awk to Awk Templates; allows you to insert awk control code into plain text and -generate awk script to print out the text. This project started as simple -cheetah-like command and expression inclusion in text file and I'm working my -way to more featured and extensible approach inspired by jinja2 so the amount -of raw code that needs to be inserted is kept at minimum. - -Currently implemented syntax: - - - any text not matching syntax below is printed out (a print statement will - be generated in the resulting script) - -| - lines starting with | are considered awk code and are expressed verbatim in - resulting script - -|| - escape for above syntax, prints text out with one bar prepended - -@ - special command to affect how the code is generated. user-defined macros - should be possible - -... {% %} ... - similar to | but works as a block, doesn't have to happen at column 0 - -...{{ }}... - inserts awk expression into the print command. Eg. a variable or result of - computation - -... TBD - --- old readme -- - Awk to Awk Templates; compiles interleaved awk and text into pure posix awk code.