4 <:hidden:>

<:hidden named_args:>

Creates a series of HTML hidden input fields for each named attribute in the tag, escaping html entities as appropriate.

Example:

<:set that "Hello//world":>
<:hidden this=`that` count=`5`:>

produces

<INPUT TYPE=HIDDEN NAME="this" VALUE="Hello%2F%2Fworld">
<INPUT TYPE=HIDDEN NAME="count" VALUE="5">

The Python component code to mimic this tag is:

import templating.UrlBuilder
print templating.UrlBuilder( named_args_as_dict )