Skip to content

Dot parser incompatible with graphviz #2

@bjorn3

Description

@bjorn3

If a label contains a html table cfgexplorer requires the label to be between quotes ("), while graphviz requires the label to be between < and >, otherwise it will render it as plain text.

Cfgexplorer:

digraph Mir {
    "bb6" [shape="none", label="<table><tr><td>unreachable</td></tr></table>"];
}

Graphviz:

digraph Mir {
    "bb6" [shape="none", label=<<table><tr><td>unreachable</td></tr></table>>];
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions