Repair the closing-bracket-as-pipe typo seen in flowchart / graph node-label declarations: the author meant to close a quoted node label with "] but typed "| instead. Two failure modes occur in the wild:
A. B2["SfU16<br/>Migration debate"| -.->|"โฆ"| M3 โ followed by an edge operator; the orphan | confuses the lexer. Fix: "| โ "].
B. MP["๐ด MP (18)\nNohrรฉn"| OPP โ followed by a bare identifier (no edge operator). The author both mistyped the bracket and dropped the edge. Fix: "| โ "] --> so the dangling node connects to the following identifier.
Applies only to flowchart/graph. Idempotent: a correctly closed "] is never touched.
Repair the closing-bracket-as-pipe typo seen in flowchart / graph node-label declarations: the author meant to close a quoted node label with
"]but typed"|instead. Two failure modes occur in the wild:A.
B2["SfU16<br/>Migration debate"| -.->|"โฆ"| M3โ followed by an edge operator; the orphan|confuses the lexer. Fix:"|โ"].B.
MP["๐ด MP (18)\nNohrรฉn"| OPPโ followed by a bare identifier (no edge operator). The author both mistyped the bracket and dropped the edge. Fix:"|โ"] -->so the dangling node connects to the following identifier.Applies only to
flowchart/graph. Idempotent: a correctly closed"]is never touched.