PARA and PARAGRAPH v16

These functions and procedures generate the <P> tag, which marks the text as a paragraph. htp.paragraph enables you to add attributes to the tag.

Syntax

The following is the syntax for HTP:

HTP.PARA;

HTP.PARAGRAPH (
   calign         IN       VARCHAR2   DEFAULT NULL
   cnowrap        IN       VARCHAR2   DEFAULT NULL
   cclear         IN       VARCHAR2   DEFAULT NULL
   cattributes    IN       VARCHAR2   DEFAULT NULL);

The following is the syntax for HTF:

HTF.PARA RETURN VARCHAR2;

HTF.PARAGRAPH (calign, cnowrap, cclear, cattributes) RETURN VARCHAR2;

Parameters

ParameterPurpose
calignThe value for the ALIGN attribute
cnowrapIf the value for this parameter isn't NULL, adds the NOWRAP attribute to the tag
cclearThe value for the CLEAR attribute
cattributesOther attributes to include as is in the tag