Closed
Description
Both of these examples should look like the original when rendered as a table in rustdoc but neither do.
This:
//! Test | Table
//! ------|-------------
//! t = b | `x | y | z`
Results in:
//! Test | Table
//! ------|-------------
//! t = b | `x
This:
//! Test | Table
//! ------|-------------
//! t = b | `x \| y \| z`
Results in:
//! Test | Table
//! ------|-------------
//! t = b | `x \
This was supposed to be fixed when rust updated hoedown to 3.0.4 (#27945) but it doesn't seem to work inside code blocks. hoedown/hoedown#77 seems to have covered those cases so I'm not sure where the problem lies.