HTML Highlighting Procedures

The following table describes HTML highlighting procedures:

Procedure

Description

html_blink

Marks the start of blinking style text by using the HTML <BLINK> tag.

Syntax:

html_blink(string attributes)

Attributes: Defines the HTML attributes that are incorporated inside the HTML <BLINK> tag.

Example:

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

html_blink_end

Marks the end of blinking style text by using the HTML </BLINK> tag.

Syntax:

html_blink_end 

html_cite

Marks the start of text in citation style by using the HTML <CITE> tag.

Syntax:

html_cite(string attributes)

Attributes: Defines the HTML attributes that are incorporated inside the HTML <CITE> tag.

Example:

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

html_cite_end

Marks the end of text in citation style by using the HTML </CITE> tag.

Syntax:

html_cite_end 

html_code

Marks the start of text in code style by using the HTML <CODE> tag.

Syntax:

html_code(string attributes)

Attributes: Defines the HTML attributes that are incorporated inside the HTML <CODE> tag.

Example:

do html_code('')
print 'Here is code style text' ()
do html_code_end 

html_code_end

Marks the end of text in code style by using the HTML </CODE> tag.

Syntax:

html_code_end 

html_kbd

Marks the start of text in keyboard input style by using the HTML <KBD> tag.

Syntax:

html_kbd(string attributes)

Attributes: Defines the HTML attributes that are incorporated inside the HTML <KBD> tag.

Example:

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

html_kbd_end

Marks the end of text in keyboard style by using the HTML </KBD> tag.

Syntax:

html_kbd_end

html_samp

Marks the start of text in sample style by using the HTML <SAMP> tag.

Syntax:

html_samp(string attributes)

Attributes: Defines the HTML attributes that are incorporated inside the HTML <SAMP> tag.

Example:

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

html_samp_end

Marks the end of text in sample style by using the HTML </SAMP> tag.

Syntax:

html_samp_end

html_strike

Marks the start of text in strikethrough style by using the HTML <STRIKE> tag.

Syntax:

html_strike(string attributes)

Attributes: Defines the HTML attributes that are incorporated inside the HTML <STRIKE> tag.

Example:

do html_strike('') 
print 'Here is strikethrough text' () 
do html_strike_end 

html_strike_end

Marks the end of text in strikethrough style by using the HTML </STRIKE> tag.

Syntax:

html_strike_end 

html_sub

Marks the start of text in subscript style by using the HTML <SUB> tag.

Syntax:

html_sub(string attributes)

Attributes: Defines the HTML attributes that are incorporated inside the HTML <SUB> tag.

Example:

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

html_sub_end

Marks the end of text in subscript style by using the HTML </SUB> tag.

Syntax:

html_sub_end

html_sup

Marks the start of text in superscript style by using the HTML <SUP> tag.

Syntax:

html_sup(string attributes)

Attributes: Defines the HTML attributes that are incorporated inside the HTML <SUP> tag.

Example:

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

html_sup_end

Marks the end of text in superscript style by using the HTML </SUP> tag.

Syntax:

html_sup_end