-
-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
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
[HTML] Highlighted inline code within strikeout is not applied correctly #79
Comments
@dbaynard may be able to say more than I can about why |
mpark
added a commit
to mpark/wg21
that referenced
this issue
Jun 14, 2019
This is a bug, introduced in 0b07bbc when the line <code class="sourceCode cpp"><span class="kw">constexpr</span></code> This is treating the span as a line. The css should probably restrict that behaviour to |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Consider:
~~foo `constexpr`{.cpp} bar~~
With
pandoc foo.md --output foo.html --self-contained
this currently generates:The desired output would be something like:
This seems to be caused by the
display: inline-block
fromskylighting/skylighting-core/src/Skylighting/Format/HTML.hs
Line 170 in 8c650b6
Changing this to
display: inline
produces the desired output.The text was updated successfully, but these errors were encountered: