-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
42 lines (26 loc) · 959 Bytes
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
---------
changelog
---------
v0.5
----
* Smart indent. Tokenizer sets `indent level` for whole template equal indent
level of first indented line (as in python)
* Mint nodes now based on `ast.AST` and to transform `mint` tree to `python`
tree we use `ast.NodeTransformer` subclass. This feature allows us write
transformers for other languages (js =)
* Added `pretty printing` of html result. Default indention is two spaces and
is unchangable
* Updated vim highlight for mint files
* Added html helpers `utils.script`, `utils.link` and `utils.scripts`
* New `CLI` interface. Some features
* shows result python code listing for mint template
* shows tokens stream for mint template
* renders templates and prints result to stdout (note: if no outer variables
used)
* measures average rendering time for template (note: if no outer variables
used)
* `monitoring` feature
* Fixes
v0.4.4
------
Working implementation