HTML Highlighting Procedures

Table 69. HTML Highlighting Procedures

Procedure

Description

html_blink

Start of blinking text.

Syntax: html_blink(string attributes)

  • attributes = HTML attributes inside <BLINK>

Example:

do html_blink('')
print 'This is blinking' ()
do html_blink_end

html_blink_end

End of blinking text.

Syntax: html_blink_end

html_cite

Start of citation text.

Syntax: html_cite(string attributes)

  • attributes = HTML attributes inside <CITE>

Example:

do html_cite('')
print 'This is a citation' ()
do html_cite_end

html_cite_end

End of citation text.

Syntax: html_cite_end

html_code

Start of code text.

Syntax: html_code(string attributes)

  • attributes = HTML attributes inside <CODE>

Example:

do html_code('')
print 'Here is the code' ()
do html_code_end

html_code_end

End of code text.

Syntax: html_code_end

html_kbd

Start of keyboard input text.

Syntax: html_kbd(string attributes)

  • attributes = HTML attributes inside <KBD>

Example:

do html_kbd('')
print 'Here is keyboard' ()
do html_kbd_end

html_kbd_end

End of keyboard input text.

Syntax: html_kbd_end

html_samp

Start of sample text.

Syntax: html_samp(string attributes)

  • attributes = HTML attributes inside <SAMP>

Example:

do html_samp('')
print 'Here is sample' ()
do html_samp_end

html_samp_end

End of sample text.

Syntax: html_samp_end

html_strike

Start of strike-through text.

Syntax: html_strike(string attributes)

  • attributes = HTML attributes inside <STRIKE>

Example:

do html_strike('')
print 'Here is strike-through' ()
do html_strike_end

html_strike_end

End of strike-through text.

Syntax: html_strike_end

html_sub

Start of subscript text.

Syntax: html_sub(string attributes)

  • attributes = HTML attributes inside <SUB>

Example:

print 'Here is' ()
do html_sub('')
print 'subscript text' ()
do html_sub_end

html_sub_end

End of subscript text.

Syntax: html_sub_end

html_sup

Start of superscript text.

Syntax: html_sup(string attributes)

  • attributes = HTML attributes inside <SUP>

Example:

print 'Here is' ()
do html_sup('')
print 'superscript text' ()
do html_sup_end

html_sup_end

End of superscript text.

Syntax: html_sup_end