Details
Description
An EPP comment preceded by any number of spaces or tabs will not produce those spaces or tabs on output:
inline_epp("some \t\t <%#%>text")) # returns 'sometext' |
inline_epp("some<%#%> text")) # returns 'some text' |
I can't find anything in the documentation that supports this. The code contains this comment and a regexp. It would make sense if the regexp was anchored at the beginning of line (and if the behavior was documented) but it isn't.