]> matita.cs.unibo.it Git - helm.git/blob - helm/software/matita/nlibrary/topology/convert.awk
d9c9b91e9cbac1117b8cce05e8ebd139d5dfc000
[helm.git] / helm / software / matita / nlibrary / topology / convert.awk
1 BEGIN { p = 1; indent = ""; } 
2 /DOCBEGIN/ { indent = ""; NF = 0; }
3 /DOCEND/ { indent = "    "; NF = 0; } 
4 /HIDE/ { p = 0; }
5 { if (p == 1) print indent $0; } 
6 /UNHIDE/ { p = 1; }