@footNoteRef(URL, SUPER)

Inserts linked reference to a @footNote() definition.

The following parameters are recognized:

URL

Location to jump to when clicked.

SUPER

Indicator text to appear as superscript.

Example of using the macro:

@p("Check out the NST project@footNoteRef("#nstref","1").")

@footNote("https://www.networksecuritytoolkit.org","NST","The
Linux based network security toolkit Ron and Paul have been working
on.")

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("Check out the NST project@footNoteRef("#nstref","1").")

@footNote("https://www.networksecuritytoolkit.org","NST","The
Linux based network security toolkit Ron and Paul have been working
on.")

EOF

This macro is defined as:

@htmlEntity("a","@param(1)","@htmlAttr("href","@param(0)")
@htmlAttr("style","vertical-align: super; font-size: 75%;")")