"Perf builds for each rolled up PR" table gets confused by pipe `|` characters in description
Zalathar opened this issue · 3 comments
Zalathar commented
See rust-lang/rust#121859 (comment) for an example.
The bot tried to render the rolled-up perf builds in a table, but the line for rust-lang/rust#121784 abruptly cuts off mid-description, because the issue description contains pipe characters (||
).
Presumably they aren't being escaped by the bot, so the GitHub table renderer treats them as cell boundaries instead of visible pipe characters.
Zalathar commented
I imagine some backslash-escaping for pipe characters is needed here:
Lines 65 to 83 in 9580e15
Kobzol commented
Ah, good point, we should probably escape Markdown there.
Kobzol commented
Do you want to try to fix this? :)