@stress(TEXT)

Insert text into paragraph which you really want to stress.

The following parameters are recognized:

TEXT

Text to be displayed.

This macro is intended to be used when one wants to really stress a word (or couple of words) within a block of text. DO NOT add any additional text decorations, styles or formatting when using this macro!

Example of using the macro:

@p("If you select @formFieldRef("Upload Database"), then
you @stress("must") also specify a previously saved @appExtInprotect()
database in the @formRowRef("Database Upload") field.")

Assuming the com.ccg.macros.at.All class is within your CLASSPATH and the config/html.at macros file has been generated (Hint: run make atmacros in the wui directory), a developer should be able to run the above example by copy/pasting from below:

[root@probe root]# java com.ccg.macros.at.All <<EOF
@include("config/html.at",,"d")
@p("If you select @formFieldRef("Upload Database"), then
you @stress("must") also specify a previously saved @appExtInprotect()
database in the @formRowRef("Database Upload") field.")

EOF

This macro is defined as:

@htmlEntity("span","@param(0)","@htmlAttr("class","stress")")