Closed
Description
Edit: Add test code in metadata.
It is ugly in my crate (not public yet), see below image displayed in Firefox:
but in Chromium:
At least in Chromium, the right side border of the table is displayed.
I tested in both 1.31.0, 1.32.0 and 1.34.0-nightly (852701a 2019-02-01), those have the same effect. I didn't test previous versions because I'm using Rust 2018.
Metadata
OS and software info
OS: Xubuntu 18.04.1
Browser: Firefox 65.0 (All extensions are disabled)
Rustdoc:
% rustdoc -Vv
rustdoc 1.32.0 (9fda7c223 2019-01-16)
binary: rustdoc
commit-hash: 9fda7c2237db910e41d6a712e9a2139b352e558b
commit-date: 2019-01-16
host: x86_64-unknown-linux-gnu
release: 1.32.0
LLVM version: 8.0
Build with below code to test locally with `rustdoc`
/// Tone (thanh điệu), which also called "accent", lists all possible
/// tones in Vietnamese.
///
/// These tones are:
///
/// Tone | Example
/// ------------|--------
/// None | a
/// Grave | à
/// Acute | á
/// Hook above | ả
/// Tilde | ã
/// Dot below | ạ
#[derive(Debug, PartialEq)]
pub enum Tone {
// Thanh bằng hoặc không dấu
None = 0,
// Thanh huyền
Grave,
// Thanh sắc
Acute,
// Thanh hỏi
HookAbove,
// Thanh ngã
Tilde,
// Thanh nặng
DotBelow,
}