[pmwiki-users] Disable Markup
The Editor
editor at fast.st
Mon Aug 7 17:17:50 CDT 2006
It's just a pagelist fmt (with pagelist extension) using
[[#picklist]]
(:if equal {<$Group}:)(:select {$$selectname}:)(:if:)
(:option {=$FullName}:){=$Name}
(:if equal {>$Group}:)(:selectend:)
[[#picklistend]]
And the following Markups
Markup('select', 'inline', '/\(:select (.*?):\\)/', '<select name=$1>');
Markup('option', 'inline', '/\(:option (.*?):\\)/', '<option value=$1>');
Markup('selectend', 'inline', '/\(:selectend:\\)/', '</select>');
How and where do I "escape the values"? Perhaps I need only change
the order from "inline" to something later in the markup table?
Cheers,
Caveman
On 8/7/06, Patrick R. Michaud <pmichaud at pobox.com> wrote:
> The pulldown menu, or whatever is generating the <option> tags,
> needs to be escaping the values so that they aren't processed by later
> markup rules.
>
> Pm
>
More information about the pmwiki-users
mailing list