The LIST Tag

    Syntax: {LIST::List name::Tag name}
    Function: The LIST tag will get the specified list and modifies the argument of the list with the specified tag ("Tag name")
    Example:

    *ANYTAG
    <B><I>{ARG1}</I></B> = {ARG2}<BR?

    *ANYLIST
    one::1
    two::2
    three::3

    {LIST::ANYLIST::ANYTAG}

    The output will look as follows:

    one = 1
    two = 2
    three = 3

    or as HTML source:

    <B><I>one </I></B> = 1<BR>
    <B><I>two</I></B> = 2<BR>
    <B><I>three</I></B> = 3<BR>

Back