suppose I want to include
≤
in a flowchart using DiagrammeR. However,
DiagrammeR::grViz("
digraph test {
node[shape = rectangle]
node1 [label = <u<sub>T</sub>: μ<sub>T</sub> ≤>]
node2 [label = B]
node1 -> node2
}
")
cause large gap between mu and its subscript T. The issue seems to have been raised in github years ago.
On the other hand,
DiagrammeR::mermaid("
graph LR;
A[u<sub>T</sub>: μ<sub>T</sub> ]--> B")
DiagrammeR::mermaid("
graph LR;
A[u<sub>T</sub>: μ<sub>T</sub> ≤]--> B")
cause special character ≤ %le; to break the plot.

Is there an alternative solution? Thank you.
