A html.conf => html.conf +6 -0
@@ 0,0 1,6 @@
+T <span class="t"> </span> type
+V <span class="v"> </span> variable
+N <span class="n"> </span> number
+S <span class="s"> </span> string
+E <span class="e"> </span> escape
+C <span class="c"> </span> comment
A term.conf => term.conf +7 -0
@@ 0,0 1,7 @@
+#nonest
+T [32m [0m type
+V [94m [0m variable
+N [92m [0m number
+S [35m [0m string
+E [95m [0m escape
+C [90m [0m comment
A test.src => test.src +7 -0
@@ 0,0 1,7 @@
+// plain source
+int x = 3 ;
+string s = "line1\nline2" ;
+
+%{C// styled source%}
+%Tint %Vx = %N3 ;
+%Tstring %Vs = %{S"line1%{E\n%}line2"%} ;