[graphviz-interest] left-alignment in labels

Andreas Matthias <[email protected]> Sun, 14 Dec 2014 15:57:09 +0100
Newsgroups gmane.comp.video.graphviz
Organization -
Message-ID <[email protected]>
In the following example the text is not left-aligned correctly.
The second and third line are indented a bit.

digraph G {
    node [ shape = "record" ]
    A [
        label="{\
            aaa\l\
            bbb\l\
            ccc\l\
        }"
    ]
}

I can force a correct alignment by removing indentation in the source file:

digraph G {
    node [ shape = "record" ]
    A [
        label="{\
            aaa\l\
bbb\l\
ccc\l\
        }"
    ]
}

But this is not perfect concerning readability, as is writing everything
into one line. 

Is this considered a bug or is escaping of the end of line character not
supported?

I'm still using version 2.36.0. 


Ciao
Andreas

_______________________________________________
[email protected]
http://lists.research.att.com/mailman/listinfo/graphviz-interest