From 5ba7a6bff511a2a8a5cd5224ba195fff1a6f2af3 Mon Sep 17 00:00:00 2001 From: Mark Hansen Date: Wed, 21 Oct 2020 22:04:34 +1100 Subject: [PATCH] Replace TT with CODE element TT is deprecated --- doc/info/attrs.html | 24 ++++++++++++------------ doc/infosrc/templates/attrs.html.j2 | 24 ++++++++++++------------ 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/doc/info/attrs.html b/doc/info/attrs.html index 76281f87d..8979b1ebd 100644 --- a/doc/info/attrs.html +++ b/doc/info/attrs.html @@ -20,14 +20,14 @@ Note that attribute names are case-sensitive. This is usually true for attribute values as well, unless noted.

All Graphviz attributes are specified by name-value pairs. Thus, to -set the fillcolor of a node abc, one would use +set the fillcolor of a node abc, one would use - +
abc [fillcolor = red]
abc [fillcolor = red]
-Similarly, to set the arrowhead style of an edge abc -> def, +Similarly, to set the arrowhead style of an edge abc -> def, one would use - +
abc -> def [arrowhead = diamond]
abc -> def [arrowhead = diamond]
Further details concerning the setting of attributes can be found in the description of the @@ -45,13 +45,13 @@ with an undirected graph since the head and tail of an edge are meaningless. As a convention, the first time an undirected edge appears, the DOT parser will assign the left node as the tail node and the right node as -the head. For example, the edge A -- B will have tail A -and head B. It is the user's responsibility to handle such +the head. For example, the edge A -- B will have tail A +and head B. It is the user's responsibility to handle such edges consistently. If the edge appears later, in the format - +
B -- A [taillabel = "tail"]
B -- A [taillabel = "tail"]
-the drawing will attach the tail label to node A. +the drawing will attach the tail label to node A. To avoid possible confusion when such attributes are required, the user is encouraged to use a directed graph. If it is important to make the graph appear undirected, this can be @@ -2142,10 +2142,10 @@ will be in 3D. The following list gives the legal strings corresponding to values of the given types. The syntax for describing legal type strings is a mixture of literal strings, -stdio encodings (e.g., %f for a double), and regular expressions. -For regular expressions, (...)* indicates 0 or more copies of the expression -enclosed in the parentheses, (...)+ indicates 1 or more, and -(...)? denotes 0 or 1 copy. +stdio encodings (e.g., %f for a double), and regular expressions. +For regular expressions, (...)* indicates 0 or more copies of the expression +enclosed in the parentheses, (...)+ indicates 1 or more, and +(...)? denotes 0 or 1 copy.

addDouble

A double with an optional prefix '+'. diff --git a/doc/infosrc/templates/attrs.html.j2 b/doc/infosrc/templates/attrs.html.j2 index 685d7516d..42df96268 100644 --- a/doc/infosrc/templates/attrs.html.j2 +++ b/doc/infosrc/templates/attrs.html.j2 @@ -20,14 +20,14 @@ Note that attribute names are case-sensitive. This is usually true for attribute values as well, unless noted.

All Graphviz attributes are specified by name-value pairs. Thus, to -set the fillcolor of a node abc, one would use +set the fillcolor of a node abc, one would use - +
abc [fillcolor = red]
abc [fillcolor = red]
-Similarly, to set the arrowhead style of an edge abc -> def, +Similarly, to set the arrowhead style of an edge abc -> def, one would use - +
abc -> def [arrowhead = diamond]
abc -> def [arrowhead = diamond]
Further details concerning the setting of attributes can be found in the description of the @@ -45,13 +45,13 @@ with an undirected graph since the head and tail of an edge are meaningless. As a convention, the first time an undirected edge appears, the DOT parser will assign the left node as the tail node and the right node as -the head. For example, the edge A -- B will have tail A -and head B. It is the user's responsibility to handle such +the head. For example, the edge A -- B will have tail A +and head B. It is the user's responsibility to handle such edges consistently. If the edge appears later, in the format - +
B -- A [taillabel = "tail"]
B -- A [taillabel = "tail"]
-the drawing will attach the tail label to node A. +the drawing will attach the tail label to node A. To avoid possible confusion when such attributes are required, the user is encouraged to use a directed graph. If it is important to make the graph appear undirected, this can be @@ -143,10 +143,10 @@ of the layout programs. The following list gives the legal strings corresponding to values of the given types. The syntax for describing legal type strings is a mixture of literal strings, -stdio encodings (e.g., %f for a double), and regular expressions. -For regular expressions, (...)* indicates 0 or more copies of the expression -enclosed in the parentheses, (...)+ indicates 1 or more, and -(...)? denotes 0 or 1 copy. +stdio encodings (e.g., %f for a double), and regular expressions. +For regular expressions, (...)* indicates 0 or more copies of the expression +enclosed in the parentheses, (...)+ indicates 1 or more, and +(...)? denotes 0 or 1 copy.

{% for t in types %}
{{t.name}} -- 2.40.0