77. HTML

Generic HTML formatting

77.1. Summary of Module Globals

List of Global Functions

  • Bold - Make a piece of HTML code bold

  • ColoredList - Make a HTML (unsorted) colored list from a list of strings

  • Colorize - Colorize a piece of HTML code

  • Heading - Make a HTML heading from a text

  • Link - Make a HTML link

  • List - Make a HTML (unsorted) list from a list of strings

  • ListEnd - End a HTML (unsorted) list

  • ListItem - Make a HTML list item

  • ListStart - Start a HTML (unsorted) list

  • Newline - Make a forced HTML line break

  • Newlines - Make a number of forced HTML line breaks

  • Para - Make a HTML paragraph from a text

List of Global Variables

    77.2. Global Functions

    77.2.1. Bold

    Make a piece of HTML code bold

    Function parameters

    • string text

    Return value

    • string - HTML code

    77.2.2. ColoredList

    Make a HTML (unsorted) colored list from a list of strings

    Function parameters

    • list<string> items

    • string color

    Return value

    • string - HTML code

    77.2.3. Colorize

    Colorize a piece of HTML code

    Function parameters

    • string text

    • string color

    Return value

    • string - HTML code

    77.2.4. Heading

    Make a HTML heading from a text

    Function parameters

    • string text

    Return value

    • string - HTML code

    77.2.5. Link

    Make a HTML link

    Function parameters

    • string text

    • string link_id

    Return value

    • string - HTML code

    77.2.6. List

    Make a HTML (unsorted) list from a list of strings

    Function parameters

    • list<string> items

    Return value

    • string - HTML code

    77.2.7. ListEnd

    End a HTML (unsorted) list

    Return value

    • string - HTML code

    77.2.8. ListItem

    Make a HTML list item

    Function parameters

    • string text

    Return value

    • string - HTML code

    77.2.9. ListStart

    Start a HTML (unsorted) list

    Return value

    • string - HTML code

    77.2.10. Newline

    Make a forced HTML line break

    Return value

    • string - HTML code

    77.2.11. Newlines

    Make a number of forced HTML line breaks

    Function parameters

    • integer count

    Return value

    • string - HTML code

    77.2.12. Para

    Make a HTML paragraph from a text

    Function parameters

    • string text

    Return value

    • string - HTML code

    77.3. Global Variables

    77.4. Module Requirements

    none