Referring to How to underline text as part of a label? where underlining is explained.
Is ist possible to combine underlining with column-layout?
digraph g {
graph [ rankdir = "LR"];
node [
shape = "record"
];
"other" [
label = <<u>Tada</u>>;
];
"something" [
label = " name | property"
];
}
I am open for suggestions with other frameworks like mermaid (preferably supported by hackmd)
You can use an HTML-like label (table) (using
<u>
tags inside a table cell), although it's pretty heavy: