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
a tags followed by a dot character cause the text following the dot to be omitted from the result.
a
Working as expected: Consider this input:
<p> The quick brown fox <a href="#">jumps</a> over the lazy dog. </p>
The output is, as expected:
%p The quick brown fox %a{:href => "#"} jumps over the lazy dog.
Bug: But if a dot follows the a element, as in the following input:
<p> The quick brown fox <a href="#">jumps</a>. Over the lazy dog. </p>
The output is missing everything after the dot:
%p The quick brown fox = succeed "." do %a{:href => "#"} jumps
html2haml --version html2haml 2.2.0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
a
tags followed by a dot character cause the text following the dot to be omitted from the result.Cases
Working as expected:
Consider this input:
The output is, as expected:
Bug:
But if a dot follows the
a
element, as in the following input:The output is missing everything after the dot:
Additional information
The text was updated successfully, but these errors were encountered: