input', '/\\(:fieldset\\s+(.*?):\\)/ei', "InputFieldSet(PSS('$1'))"); Markup('fieldsetend', 'inline', '/\\(:fieldsetend:\\)/i', ""); Markup('label', '>input', '/\\(:label\\s+(\\w+)(.*?):\\)/ei', "InputLabel('$1', PSS('$2'))"); Markup('toggleboxes', '>input', '/\\(:toggleboxes\\s?(.*?):\\)/ei', "ToggleBoxes(PSS('$1'))"); function InputFieldSet($legend) { return "
\n".($legend ? "".trim($legend, "'\" ")."\n" : ""); } function InputLabel($id, $label) { return ""; } function ToggleBoxes($args) { return "\n \n"; }