]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/www/lambda_delta/bin/xhtbl/textLexer.mll
- design table for Basic_2
[helm.git] / helm / www / lambda_delta / bin / xhtbl / textLexer.mll
index f1ea9a61ae4bb21cd93509b6b384a2f46ed768ea..2ed6742c954bfbf70a1903cbda4e59b148cc54f5 100644 (file)
@@ -25,4 +25,10 @@ rule token = parse
    | "name"   { out "name"; TP.NAME             }   
    | "table"  { out "table"; TP.TABLE           }
    | "class"  { out "class"; TP.CSS             }
+   | "(*"     { block lexbuf; token lexbuf      }
    | eof      { TP.EOF                          }
+and block = parse
+   | "*)"     { ()                              }
+   | "(*"     { block lexbuf; block lexbuf      }
+   | STR      { block lexbuf                    }
+   | _        { block lexbuf                    }