-
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
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
C++ syntax highlighting on iOS html #7248
Comments
I can confirm this on iOS 14.4.2 and 14.5 as well (no, |
Interestingly, removing the following CSS rule fixes it: pre > code.sourceCode > span {
display: inline-block;
} source of that seems to be this line, which has been there for more than two years... |
Thanks! I can confirm that this fixes the mangling, both on the minimal test case and in my original full doc. Of course not surprisingly it also causes the lines to wrap instead of allowing you to scroll left and right. This is probably still strictly better, but it would be nice to be able to maintain the scrolling behavior on mobile devices and avoid wrapping. At the very least this helps a lot with figuring out where mobile Safari is losing its mind. |
I think we want the non-wrapping behavior to be the default, as wrapping can lead to problems in code (leading people to think the code contains a line break). So, it looks like an iOS bug, and maybe this can be closed? |
Definitely looks like an iOS bug. Unfortunately for us, that has quite high usage-share. So if they don't fix it soon, and it happens often (not just with this specific piece of code highlighted in cpp), then we may have to find a work-around... like in the good old Internet Explorer days 🙈 |
For what it's worth, I submitted a bug report to Apple, but that's always kind of a black box. I have the test cases hosted here: As someone who briefly worked at Apple, the best way to get these things fixed is always to talk to someone who works on the team in question. Unfortunately I don't know anyone on the mobile Safari team, but maybe someone else here does? Also not sure if this is helpful, but the original context of the document where this came up is here (already corrected to remove the Really appreciate the work you guys do, having a tool like this has been invaluable for writing and distributing documentation. |
Nope, I only follow @jensimmons on twitter 😅 |
@mb21 can you think of a workaround that would make sense, short of just setting the default to wrap (which I don't want to do)? Is there a way to set the default to wrap on mobile devices, or on IOS, for example? |
Just the one assigned through feedback assistant: 9091417 |
Maybe I'll leave this open in case someone can find a good workaround. |
I had a quick look, and couldn't find an easy fix. Probably could get something working with either css grid or flexbox, e.g: pre > code.sourceCode {
display: grid;
} but that wouldn't work for older browsers and really would be a rewrite of all that... so let's hold off doing that for a bit, maybe Safari will have it fixed in the next release... |
Can confirm this bug still exists on iOS 16.1.1 when using pandoc 3.1.4 |
Since this bug in iOS is obviously not a priority for them, maybe we should capitulate and remove pre > code.sourceCode > span {
display: inline-block;
} or make it conditional so that it doesn't get activated for mobile devices. Someone who really knows CSS may have other ideas... |
In my tests, removing the |
Can confirm removing |
See jgm/pandoc#7248 for an explanation of why this was removed from the regular CSS, and see jgm/pandoc#9520 for an explanation of the problems this causes in printed output.
I have a document that I render into a few different formats, including html. The html output looks great on most platforms, but on iOS, all syntax-highlighted C++ is badly mangled. Screenshot attached to show what I mean.
Relevant info:
Minimal test case:
UserGuide.md
Rendered with the following:
I tested with both Safari and Chrome on an iPhone running iOS 14.4.2. Same behavior in both browsers, so this seems to be a platform-wide thing. Since it's only iOS, I'm guessing the most obvious answer is that this is a problem in Apple's html rendering in iOS. If that's true, it would at least be helpful to narrow down what's going wrong to put together a better bug report for them.
The text was updated successfully, but these errors were encountered: