comfy_table/style/modifiers.rs
1/// A modifier, that when applied will convert the outer corners to round corners.
2/// ```text
3/// ╭───────┬───────╮
4/// │ Hello │ there │
5/// ╞═══════╪═══════╡
6/// │ a ┆ b │
7/// ├╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌┤
8/// │ c ┆ d │
9/// ╰───────┴───────╯
10/// ```
11pub const UTF8_ROUND_CORNERS: &str = " ╭╮╰╯";
12
13/// A modifier, that when applied will convert the inner borders to solid lines.
14/// ```text
15/// ╭───────┬───────╮
16/// │ Hello │ there │
17/// ╞═══════╪═══════╡
18/// │ a │ b │
19/// ├───────┼───────┤
20/// │ c │ d │
21/// ╰───────┴───────╯
22/// ```
23pub const UTF8_SOLID_INNER_BORDERS: &str = " │─ ";