From 5405bae39b6cb921fa6200957d6ccb24e090826d Mon Sep 17 00:00:00 2001 From: Amy Gale Ruth Bowersox Date: Wed, 4 Feb 2026 23:26:32 -0700 Subject: [PATCH] fixed small HTML bug --- ui/static/html-reference.html | 540 +++++++++++++++++----------------- 1 file changed, 277 insertions(+), 263 deletions(-) diff --git a/ui/static/html-reference.html b/ui/static/html-reference.html index 718ac92..c237acb 100644 --- a/ui/static/html-reference.html +++ b/ui/static/html-reference.html @@ -336,7 +336,7 @@

DD

Specifies a definition in a definition list. Indicates that the text is a definition of a term, and should therefore be displayed in the right-hand column of a definition list. -
+
Syntax:
<DD>
Allowed in Topic Names
@@ -904,273 +904,287 @@

+

MENU

+ Denotes a list of items. Specifies that the following block consists of individual items, + each beginning with an LI element. +
+
Syntax:
+
<MENU>
+
Allowed in Topic Names
+
No
+
Closing Tag
+
Required
+
Notes
+
This may be rendered differently in different browsers, but will usually be rendered + similarly to the UL tag.
+
Example
+
+ Information about Linux:
+ <MENU>
+ <LI><A HREF="http://www.linux.com">Linux.com</A>
+ <LI><A HREF="http://linuxtoday.com">Linux Today</A>
+ <LI><A HREF="http://lwn.net">USA Today</A>
+ <LI><A HREF="http://www.freshmeat.net">Freshmeat</A>
+ <LI><A HREF="http://slashdot.org">Slashdot</A>
+ </MENU> +
+
Example Output
+
+ Information about Linux: + +
  • Linux.com
  • +
  • Linux Today
  • +
  • Linux Weekly News
  • +
  • Freshmeat
  • +
  • Slashdot
  • +
    +
    +

    + +

    NOBR

    + Turns off line breaking. Renders text without line breaks. +
    +
    Syntax:
    +
    <NOBR>
    +
    Allowed in Topic Names
    +
    Yes
    +
    Closing Tag
    +
    Required
    +
    Example
    +
    + <NOBR>Here's a line of text I don't want to be broken . . .
    + there could be an awful lot of text here and it must stay on one line . . .
    + here's the end of the line.</NOBR> +
    +
    Example Output
    +
    + Here's a line of text I don't want to be broken . . . + there could be an awful lot of text here and it must stay on one line . . . + here's the end of the line. +
    +

    + +

    OL

    + Draws lines of text as an ordered list. Specifies that the following block consists of + individual items, each beginning with an LI tag. The items are numbered. +
    +
    Syntax:
    +
    <OL [START=n] [TYPE=order-type] >
    +
    Allowed in Topic Names
    +
    No
    +
    Closing Tag
    +
    Required
    +
    Parameters
    +
    +

    START=n

    +

    Optional: Specifies a starting index number for the list. The default is 1.

    +

    TYPE=order-type

    +

    Optional: Specifies a new style for an ordered list. The order-type + can be one of these values:

    +
      +
    • A - Use upper-case letters.
    • +
    • a - Use lower-case letters.
    • +
    • I - Use upper-case Roman numerals.
    • +
    • i - Use lower-case Roman numerals.
    • +
    • 1 - Use Arabic numerals.
    • +
    +

    The default is to use Arabic numerals.

    +
    +
    Example
    +
    + <OL>
    + <LI>Pick up the TV remote control.
    + <LI>Push the POWER button to turn on the TV.
    + <LI>Change to channel 3.
    + <LI>Switch to the VCR remote control.
    + <LI>Push the POWER button to turn on the VCR.
    + <LI>Push the TV/VCR button to switch to the VCR input.
    + <LI>Change to desired channel on the VCR.
    + <LI>Insert a blank tape into the VCR.
    + <LI>Press RECORD.
    + </OL> +
    +
    Example Output
    +
    +
      +
    1. Pick up the TV remote control.
    2. +
    3. Push the POWER button to turn on the TV.
    4. +
    5. Change to channel 3.
    6. +
    7. Switch to the VCR remote control.
    8. +
    9. Push the POWER button to turn on the VCR.
    10. +
    11. Push the TV/VCR button to switch to the VCR input.
    12. +
    13. Change to desired channel on the VCR.
    14. +
    15. Insert a blank tape into the VCR.
    16. +
    17. Press RECORD.
    18. +
    +
    +

    + +

    P

    + Inserts a paragraph break and denotes a paragraph. +
    +
    Syntax:
    +
    <P [ALIGN=LEFT|CENTER|RIGHT] >
    +
    Allowed in Topic Names
    +
    No
    +
    Closing Tag
    +
    Optional
    +
    Parameters
    +
    +

    ALIGN=LEFT|CENTER|RIGHT

    +

    Sets the alignment of the paragraph. The align-type can be LEFT, CENTER, or RIGHT. + Default is left alignment.

    +
    +
    Example
    +
    + There will be a paragraph break<P>between these two lines.
    + <P ALIGN=RIGHT>Here's a paragraph that will be flush-right.</P>
    + And back to normal again. +
    +
    Example Output
    +
    +

    There will be a paragraph break

    between these two lines.

    +

    Here's a paragraph that will be flush-right.

    + And back to normal again. +
    +

    + +

    Q

    + Sets apart a short quotation in text. +
    +
    Syntax:
    +
    <Q>
    +
    Allowed in Topic Names
    +
    No
    +
    Closing Tag
    +
    Required
    +
    Notes
    +
    This may be rendered differently in different browsers.
    +
    Example
    +
    + <Q>Software is like sex; it's better when it's free.</Q> - Linus Torvalds +
    +
    Example Output
    +
    + Software is like sex; it's better when it's free. - Linus Torvalds +
    +

    + +

    S

    + Renders text in strikethrough type. +
    +
    Syntax:
    +
    <S>
    +
    Allowed in Topic Names
    +
    Yes
    +
    Closing Tag
    +
    Required
    +
    Notes
    +
    This may be rendered differently in different browsers.
    +
    Example
    +
    + We have a lot of <S>crazy people</S> unique individuals in the Playground. +
    +
    Example Output
    +
    + We have a lot of crazy people unique individuals in the Playground. +
    +

    + +

    SAMP

    + Specifies sample text. +
    +
    Syntax:
    +
    <SAMP>
    +
    Allowed in Topic Names
    +
    Yes
    +
    Closing Tag
    +
    Required
    +
    Notes
    +
    This may be rendered differently in different browsers.
    +
    Example
    +
    + <SAMP>If one-third of a hive of bees flies to a rose bush, one-fifth flies to a daisy,
    + three times the difference of those two numbers flies to an apple tree, and one bee hovers
    + attracted by both a jasmine and a tulip, how many bees are there in all?</SAMP> +
    +
    Example Output
    +
    + If one-third of a hive of bees flies to a rose bush, one-fifth flies to a daisy, + three times the difference of those two numbers flies to an apple tree, and one bee hovers + attracted by both a jasmine and a tulip, how many bees are there in all? +
    +

    + +

    SMALL

    + Renders text in smaller type. +
    +
    Syntax:
    +
    <SMALL>
    +
    Allowed in Topic Names
    +
    No
    +
    Closing Tag
    +
    Required
    +
    Example
    +
    + Some of the text on this line will be <SMALL>rendered in small</SMALL> type. +
    +
    Example Output
    +
    + Some of the text on this line will be rendered in small type. +
    +

    + +

    STRIKE

    + Renders text in strikethrough type. +
    +
    Syntax:
    +
    <S>
    +
    Allowed in Topic Names
    +
    Yes
    +
    Closing Tag
    +
    Required
    +
    Notes
    +
    This may be rendered differently in different browsers.
    +
    Example
    +
    + We have a lot of <STRIKE>crazy people</STRIKE> unique individuals in the Playground. +
    +
    Example Output
    +
    + We have a lot of crazy people unique individuals in the Playground. +
    +

    + +

    STRONG

    + Specifies that the text is strongly emphasized. +
    +
    Syntax:
    +
    <STRONG>
    +
    Allowed in Topic Names
    +
    Yes
    +
    Closing Tag
    +
    Required
    +
    Notes
    +
    This may be rendered differently in different browsers. Usually, it is rendered as bold face.
    +
    Example
    +
    + A thing can have as much value from <STRONG>where</STRONG> it is as from
    + <STRONG>what</STRONG> it is. +
    +
    Example Output
    +
    + A thing can have as much value from where it is as from + what it is. +
    +

    + + ------------------------------------------------------------------------------------------- -

    MENU

    - Denotes a list of items. Specifies that the following block consists of individual items, - each beginning with an LI element. -
    -
    Syntax -
    <MENU> -
    Allowed in Topic Names -
    No -
    Closing Tag -
    Required -
    Notes -
    This may be rendered differently in different browsers, but will usually be rendered - similarly to the UL tag. -
    Example -
    - Information about Linux:
    - <MENU>
    - <LI><A HREF="http://www.linux.com">Linux.com</A>
    - <LI><A HREF="http://linuxtoday.com">Linux Today</A>
    - <LI><A HREF="http://lwn.net">USA Today</A>
    - <LI><A HREF="http://www.freshmeat.net">Freshmeat</A>
    - <LI><A HREF="http://slashdot.org">Slashdot</A>
    - </MENU> -
    -
    Example Output -
    - Information about Linux: - -
  • Linux.com -
  • Linux Today -
  • Linux Weekly News -
  • Freshmeat -
  • Slashdot -
  • -

    - -

    NOBR

    - Turns off line breaking. Renders text without line breaks. -
    -
    Syntax -
    <NOBR> -
    Allowed in Topic Names -
    Yes -
    Closing Tag -
    Required -
    Example -
    - <NOBR>Here's a line of text I don't want to be broken . . .
    - there could be an awful lot of text here and it must stay on one line . . .
    - here's the end of the line.</NOBR> -
    -
    Example Output -
    - Here's a line of text I don't want to be broken . . . - there could be an awful lot of text here and it must stay on one line . . . - here's the end of the line. -

    - -

    OL

    - Draws lines of text as an ordered list. Specifies that the following block consists of - individual items, each beginning with an LI tag. The items are numbered. -
    -
    Syntax -
    <OL [START=n] [TYPE=order-type] > -
    Allowed in Topic Names -
    No -
    Closing Tag -
    Required -
    Parameters -
    - START=n

    - Optional: Specifies a starting index number for the list. The default is 1.

    - TYPE=order-type

    - Optional: Specifies a style for the ordered list. The order-type - can be one of these values: -

      -
    • A - Use upper-case letters. -
    • a - Use lower-case letters. -
    • I - Use upper-case Roman numerals. -
    • i - Use lower-case Roman numerals. -
    • 1 - Use Arabic numerals. -

    - The default is to use Arabic numerals. -

    Example -
    - <OL>
    - <LI>Pick up the TV remote control.
    - <LI>Push the POWER button to turn on the TV.
    - <LI>Change to channel 3.
    - <LI>Switch to the VCR remote control.
    - <LI>Push the POWER button to turn on the VCR.
    - <LI>Push the TV/VCR button to switch to the VCR input.
    - <LI>Change to desired channel on the VCR.
    - <LI>Insert a blank tape into the VCR.
    - <LI>Press RECORD.
    - </OL> -
    -
    Example Output -
    -
      -
    1. Pick up the TV remote control. -
    2. Push the POWER button to turn on the TV. -
    3. Change to channel 3. -
    4. Switch to the VCR remote control. -
    5. Push the POWER button to turn on the VCR. -
    6. Push the TV/VCR button to switch to the VCR input. -
    7. Change to desired channel on the VCR. -
    8. Insert a blank tape into the VCR. -
    9. Press RECORD. -
    -

    - -

    P

    - Inserts a paragraph break and denotes a paragraph. -
    -
    Syntax -
    <P [ALIGN=LEFT|CENTER|RIGHT] > -
    Allowed in Topic Names -
    No -
    Closing Tag -
    Optional -
    Parameters -
    ALIGN=LEFT|CENTER|RIGHT

    - Sets the alignment of the paragraph. The align-type can be LEFT, CENTER, or RIGHT. - Default is left alignment. -

    Example -
    - There will be a paragraph break<P>between these two lines.
    - <P ALIGN=RIGHT>Here's a paragraph that will be flush-right.</P>
    - And back to normal again. -
    -
    Example Output -
    - There will be a paragraph break

    between these two lines. -

    Here's a paragraph that will be flush-right.

    - And back to normal again. -

    - -

    Q

    - Sets apart a short quotation in text. -
    -
    Syntax -
    <Q> -
    Allowed in Topic Names -
    No -
    Closing Tag -
    Required -
    Notes -
    This may be rendered differently in different browsers. -
    Example -
    - <Q>Software is like sex; it's better when it's free.</Q> - Linus Torvalds - -
    Example Output -
    - Software is like sex; it's better when it's free. - Linus Torvalds -

    - -

    S

    - Renders text in strikethrough type. -
    -
    Syntax -
    <S> -
    Allowed in Topic Names -
    Yes -
    Closing Tag -
    Required -
    Notes -
    This may be rendered differently in different browsers. -
    Example -
    - We have a lot of <S>crazy people</S> unique individuals in the Playground. - -
    Example Output -
    - We have a lot of crazy people unique individuals in the Playground. -

    - -

    SAMP

    - Specifies sample text. -
    -
    Syntax -
    <SAMP> -
    Allowed in Topic Names -
    Yes -
    Closing Tag -
    Required -
    Notes -
    This may be rendered differently in different browsers. -
    Example -
    - <SAMP>If one-third of a hive of bees flies to a rose bush, one-fifth flies to a daisy,
    - three times the difference of those two numbers flies to an apple tree, and one bee hovers
    - attracted by both a jasmine and a tulip, how many bees are there in all?</SAMP> -
    -
    Example Output -
    - If one-third of a hive of bees flies to a rose bush, one-fifth flies to a daisy, - three times the difference of those two numbers flies to an apple tree, and one bee hovers - attracted by both a jasmine and a tulip, how many bees are there in all? -

    - -

    SMALL

    - Renders text in smaller type. -
    Syntax -
    - <SMALL> -
    Allowed in Topic Names -
    No -
    Closing Tag -
    Required -
    Example -
    - Some of the text on this line will be <SMALL>rendered in small</SMALL> type. - -
    Example Output -
    - Some of the text on this line will be rendered in small type. -

    - -

    STRIKE

    - Renders text in strikethrough type. -
    -
    Syntax -
    <STRIKE> -
    Allowed in Topic Names -
    Yes -
    Closing Tag -
    Required -
    Notes -
    This may be rendered differently in different browsers. -
    Example -
    - We have a lot of <STRIKE>crazy people</STRIKE> unique individuals in the Playground. - -
    Example Output -
    - We have a lot of crazy people unique individuals in the Playground. -

    - -

    STRONG

    - Specifies that the text is strongly emphasized. -
    -
    Syntax -
    <STRONG> -
    Allowed in Topic Names -
    Yes -
    Closing Tag -
    Required -
    Notes -
    This may be rendered differently in different browsers. Usually, it is rendered as bold face. -
    Example -
    - A thing can have as much value from <STRONG>where</STRONG> it is as from
    - <STRONG>what</STRONG> it is. -
    -
    Example Output -
    - A thing can have as much value from where it is as from - what it is. -

    -

    SUB

    Displays the text in a smaller font, and with its baseline lower than that of the surrounding text.