antlr / stringtemplate4

StringTemplate 4
http://www.stringtemplate.org
Other
955 stars 231 forks source link

Multiple special characters in a single <...> does not work as documented #305

Open phreed opened 2 years ago

phreed commented 2 years ago

In the documentation https://github.com/antlr/stringtemplate4/blob/master/doc/cheatsheet.md is the following:

<\ >, <\n>, <\t> | special character(s): space, newline, tab. Can have multiple in single <...> expression, e.g. <\t\t>. -- | --

I tried to use '<\n\t' and ST4 produced the error: expecting '>', found '\' Replacement with '<\n><\t>' works as expected.

parrt commented 2 years ago

That's weird. Thanks for letting me know.