We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The textile %["red":https://example.com].% is incorrectly parsed.
%["red":https://example.com].%
The resulting HTML is:
<span lang=""red":https://example.com">.</span><
But should be:
<span><a href="https://example.com">red</a>.</span>
Likely it is best to restrict what input is allowed in a lang attribute.
The text was updated successfully, but these errors were encountered:
Stricter matching for lang attributes
c402299
Lang value now supports only chars legal in BCP-47 and underscore. Fixes #76
No branches or pull requests
The textile
%["red":https://example.com].%
is incorrectly parsed.The resulting HTML is:
But should be:
Likely it is best to restrict what input is allowed in a lang attribute.
The text was updated successfully, but these errors were encountered: