You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Because of "special character" < in regularLiteral (which was added in the more recent HTML parser), the following line breaks: This is a sentence with < in it.
Removing < (from regularLiteral) seems like it fixes the issue, but I don't have the repo locally to do any of the other tests.
The text was updated successfully, but these errors were encountered:
https://github.com/wikimedia/banana-i18n/blob/master/src/ast.js#L116
const regularLiteral = wikilinks ? makeRegexParser(/^[^{}[\]$<\\]/) : makeRegexParser(/^[^{}$<\\]/)
Because of "special character"
<
in regularLiteral (which was added in the more recent HTML parser), the following line breaks:This is a sentence with < in it.
Removing < (from regularLiteral) seems like it fixes the issue, but I don't have the repo locally to do any of the other tests.
The text was updated successfully, but these errors were encountered: