From: erg Date: Thu, 14 Oct 2010 16:17:20 +0000 (+0000) Subject: Update documentation to note , and elements. X-Git-Tag: LAST_LIBGRAPH~32^2~1167 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=031d6d9e274f50a48708074ae286e73c6cd353c3;p=graphviz Update documentation to note , and elements. --- diff --git a/doc/info/shapes.html b/doc/info/shapes.html index 911dab33f..b0ee5c19a 100644 --- a/doc/info/shapes.html +++ b/doc/info/shapes.html @@ -386,6 +386,21 @@ Note that, as in HTML, element and attribute names are case-insensitive. | <FONT> text </FONT> + + + | + <I> text </I> + + + + | + <B> text </B> + + + + | + <U> text </U> + table : @@ -516,6 +531,21 @@ Attribute values must appear in double quotes. SRC="value" > +

+

<I
+  <!-- No attributes -->
+>
+
+

+

<B
+  <!-- No attributes -->
+>
+
+

+

<U
+  <!-- No attributes -->
+>
+

ALIGN diff --git a/doc/infosrc/html.2 b/doc/infosrc/html.2 index fc0387ca2..9b9d89041 100644 --- a/doc/infosrc/html.2 +++ b/doc/infosrc/html.2 @@ -88,6 +88,21 @@ Attribute values must appear in double quotes. SRC="value" > +

+

<I
+  <!-- No attributes -->
+>
+
+

+

<B
+  <!-- No attributes -->
+>
+
+

+

<U
+  <!-- No attributes -->
+>
+

ALIGN diff --git a/doc/infosrc/html_grammar b/doc/infosrc/html_grammar index 00fbeb9ae..674a72e5d 100644 --- a/doc/infosrc/html_grammar +++ b/doc/infosrc/html_grammar @@ -1,6 +1,6 @@ label = text | table text = textitem | text textitem -textitem = string | T_<BR/> | T_<FONT> text T_</FONT> +textitem = string | T_<BR/> | T_<FONT> text T_</FONT> | T_<I> text T_</I> | T_<B> text T_</B> | T_<U> text T_</U> table = [ T_<FONT> ] T_<TABLE> rows T_</TABLE> [ T_</FONT> ] rows = row | rows row row = T_<TR> cells T_</TR>