-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Preserve whitespace inside one-backtick codeblocks #65613
Conversation
Previously this was only done inside short docblocks (e.g., summary lines), but we should also do so in general.
Looking at the diff, I'm not sure this is actually sufficient. The rendered HTML omitted the space in my original example, so CSS wouldn't change that. |
One you provided in the issue (https://github.com/time-rs/time) is rendered as: <td><code>%_d</code> => <code> 5</code> instead of <code>05</code></td> (Are you using Firefox's inspector? It seems to hide spaces from text nodes for some reason, until you double-click them.) |
Yes, I am; that would certainly explain it. |
Ping from triage: @GuillaumeGomez could you review this? |
For inline code blocks, I think it'd be better to just keep the whitespace using |
Ping from triage |
I expect this is rather hard to do and would be pretty bad for the size of the HTML we ship as we'd likely need to convert every space inside inline code blocks to Why is the modification to CSS bad? Is there some downside to the existing PR I'm not seeing? |
By changing the CSS, you're changing the behavior for everyone. I personally don't like the result which is why I'd prefer to let users decide what they want. |
@GuillaumeGomez Surely if a space is placed inside backticks, that's intentional? I can't think of a situation were someone would put a space there but expect it to not be shown. By using a nonbreaking space, a user wouldn't be able to copy-paste it in more complex examples than mine. |
Well one downside is that rustdoc would behave differently to other Markdown renders. For example GitHub renders: foo ` 5` bar as: foo mdBook and dingus show the same. |
Fwiw I just checked the GFM specification. A single leading and trailing space is to be stripped iff both are present. One-sided whitespace should not be stripped. [ref] |
To be clear, you're advocating for not landing any change here, right? i.e., we would just accept that if you want leading spaces you'd literally write That seems fine to me, I guess, but I tend to agree with some others on this thread that I'd expect that we preserve spaces in code blocks, leading or not. |
Yes, I think this is the best solution. |
I am my sure what "this" you refer to. If you think that we should not preserve white space ourselves, via CSS, then please close this PR and the associated issue, since we then don't want to make any change here. |
@GuillaumeGomez Why not follow the spec that I linked? I get that the HTML is being rendered properly, but it's not being shown as I'd expect. Perhaps this issue/PR could be posted elsewhere for community feedback? |
To be clear on my previous comment, the spec recommends the following CSS is used. code {
white-space: pre-wrap;
} |
@Mark-Simulacrum Sorry, I meant keeping the current situation. So I'll close this PR and the linked issue with your approval. Thanks for taking a look into this anyway! @jhpratt Because we follow the commonmark spec. |
@GuillaumeGomez CommonMark says the exact same thing. I think this should at least be brought up to the community rather than singlehandedly closing the issue and PR. Unrelated, but CommonMark definitely isn't what's followed, as it doesn't even support tables. |
It allows extensions, which is what we do. Also, commonmark does it like we do: https://spec.commonmark.org/dingus/?text=%60%60%20foo%20%60%20bar%20%60%60%0A |
@GuillaumeGomez That's a completely different example than the situation I originally mentioned. That one is explicitly provided for in the specification. Trimming a leading space is unexpected, as there's not a matching trailing space. I understand that the HTML is being rendered correctly, and it's the CSS that needs to change. I just don't understand why rustdoc can't use the CSS snippet that the spec recommends? That's what this PR does. I will also note that I've asked for community input multiple times now and received no response on your end. |
@GuillaumeGomez The issue and PR were singlehandedly closed by you, as your opinion is that I should use a nonbreaking space. You're the only one in either the issue or PR that has that opinion, at least having explicitly said so. I have said that this should be brought up with the community to see what most people think. You originally dismissed my comment regarding the specification because I referenced the GitHub spec, not CommonMark. Since they both say the same thing (recommending the use of the above CSS snippet), why not use it? It's obviously recommended for a reason. Saying that "commonmark does it like we do" with the linked example is extremely misleading, given that 1) you're only talking about the HTML rendering, not the actual display and 2) you're pulling an example straight from the spec that has an clear use case; I typed Can you think of a situation where a leading space is present where the user would not expect the leading space to be shown (other than also having trailing space, which is explicitly provided for in the specification)? If not, there should be no harm in merging this, correct? |
And I'm telling you that we're following a spec. The spec discards the first whitespace for some reason but since we're following it, wether we agree with it or not, we have to follow it. Anyway, if you feel like this should be brought up to the community, please do so. My opinion isn't absolute, I'm just the maintainer in here. But please also keep in mind that this change is a breaking one and that exceptions are what make a code base difficult to maintain. |
Example 332 of CommonMark explicitly says not to remove space in this case, and rustdoc is following it correctly.
The discrepancy here is that rustdoc is not using the CSS recommended in CommonMark Spec ( |
You convinced me. I'll need to check if we don't have side-effects but otherwise let's get it in. |
My main concern here is that rustdoc would be deviating from other Markdown renders which might cause confusion. Do any other Markdown renders use this CSS by default? |
Ping from triage - this has sat idle for 8 days |
Waiting for an answer to @ollie27's question as well before going further. |
I do not have the time to do a survey of other Markdown renderers. It also seems like it's not really about the Markdown rendering, but rather the associated stylesheets. OTOH, it looks like GitHub doesn't preserve the leading space at all in I still feel like we should make this change as it's what I expect from code blocks (I consider GH behavior a bug). However, if we believe that a survey of other rendering pipelines would be helpful, then someone else will have to do that (maybe @jhpratt would be interested). If this hits PR triage again we should close it. |
I'm more inclined into merging so if another triage shows up, just r=me. I also confirmed that this change worked. |
Will do. It's not a high priority for me, but I'll get around to possibly doing a rough survey eventually. It'll be renderers that go straight to webpages, though, as it involves CSS. |
Thanks @jhpratt ! :) |
Ping from triage, this has sat idle for a few days. |
Still waiting for @jhpratt. |
Given that this isn't a priority for me, triage can close this until I get around to it if it makes things easier for them. |
@jhpratt Ok, closing this, thanks. |
Ok so like I said, if no consensus is reached, then we merge. Thanks @Mark-Simulacrum ! @bors: r+ rollup |
📌 Commit bc3ed32 has been approved by |
…, r=GuillaumeGomez Preserve whitespace inside one-backtick codeblocks Previously this was only done inside short docblocks (e.g., summary lines), but we should also do so in general. Fixes rust-lang#65555
Rollup of 7 pull requests Successful merges: - #65613 (Preserve whitespace inside one-backtick codeblocks) - #66512 (Add unix::process::CommandExt::arg0) - #66569 (GitHub Actions: preparations, part 1) - #66678 (Remove useless line for error index generation) - #66684 (Drive-by cleanup in region naming) - #66694 (Add some comments to panic runtime) - #66698 (tidy: Remove unused import) Failed merges: r? @ghost
@rustbot modify labels to -S-inactive-closed |
Previously this was only done inside short docblocks (e.g., summary
lines), but we should also do so in general.
Fixes #65555