diff --git a/contributors.txt b/contributors.txt index a6f59bd3d..6f983b222 100644 --- a/contributors.txt +++ b/contributors.txt @@ -249,6 +249,7 @@ YYYY/MM/DD, github id, Full name, email 2020/02/21, StochasticTinkr, Daniel Pitts, github@coloraura.com 2020/03/17, XsongyangX, Song Yang, songyang1218@gmail.com 2020/04/07, deniskyashif, Denis Kyashif, denis.kyashif@gmail.com +2020/04/10, agrabski, Adam Grabski, adam.gr@outlook.com 2020/04/23, martinvw, Martin van Wingerden, martin@martinvw.nl 2020/04/30, TristonianJones, Tristan Swadell, tswadell@google.com 2020/05/06, iammosespaulr, Moses Paul R, iammosespaulr@gmail.com diff --git a/doc/lexer-rules.md b/doc/lexer-rules.md index b12f54a88..0f14df3d4 100644 --- a/doc/lexer-rules.md +++ b/doc/lexer-rules.md @@ -246,7 +246,8 @@ The mode commands alter the mode stack and hence the mode of the lexer. The 'mor ``` // Default "mode": Everything OUTSIDE of a tag COMMENT : '' ; -CDATA : '' ;OPEN : '<' -> pushMode(INSIDE) ; +CDATA : '' ; +OPEN : '<' -> pushMode(INSIDE) ; ... XMLDeclOpen : ' pushMode(INSIDE) ; SPECIAL_OPEN: ' more, pushMode(PROC_INSTR) ;