From: Emden R. Gansner Date: Mon, 6 Oct 2014 14:45:42 +0000 (-0400) Subject: Flesh out details concerning escString type. X-Git-Tag: TRAVIS_CI_BUILD_EXPERIMENTAL~156 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c3d7362395644d7659e168ff79165ab0aaae1e97;p=graphviz Flesh out details concerning escString type. --- diff --git a/doc/info/attrs.html b/doc/info/attrs.html index 215f590ee..3767ade2e 100644 --- a/doc/info/attrs.html +++ b/doc/info/attrs.html @@ -2230,7 +2230,7 @@ enclosed in the parentheses, (...)+ indicates 1 or more, and where each %f is a double.
escString -
string allowing escape sequences which are replaced according +
A string allowing escape sequences which are replaced according to the context. For node attributes, the substring "\N" is replaced by the name of the node, and the substring "\G" by the name of the graph. @@ -2251,6 +2251,9 @@ enclosed in the parentheses, (...)+ indicates 1 or more, and the escape sequences "\n", "\l" and "\r" divide the label into lines, centered, left-justified, and right-justified, respectively. +

+ Obviously, one can use "\\" to get a single backslash. A backslash appearing before any + character not listed above is ignored.

layerList
list of strings separated by characters from the diff --git a/doc/infosrc/types b/doc/infosrc/types index 862183f44..0415f1ff0 100644 --- a/doc/infosrc/types +++ b/doc/infosrc/types @@ -148,7 +148,7 @@ interpreting "forward" and "back". A colon-separated list of doubles: "%f(:%f)*" where each %f is a double. :escString -string allowing escape sequences which are replaced according +A string allowing escape sequences which are replaced according to the context. For node attributes, the substring "\N" is replaced by the name of the node, and the substring "\G" by the name of the graph. @@ -169,6 +169,9 @@ In addition, if the associated attribute is the escape sequences "\n", "\l" and "\r" divide the label into lines, centered, left-justified, and right-justified, respectively. +

+Obviously, one can use "\\" to get a single backslash. A backslash appearing before any +character not listed above is ignored. :lblString an escString or an HTML label.