Html in Wiki Page

Installation

gemäss cookbook Cookbook:JavaScript-Editable

add in farmconfig
#allow html (and, thus, javascript etc.) in wikipages between (:html:) and (:htmlend:) tags
Markup(
       'html',
       'fulltext',
       '/\\(:html:\\)(.*?)\\(:htmlend:\\)/msi',
       function ($match) { return Keep(str_replace(array('&lt;', '&gt;', '&amp;'), array('<', '>', '&'), $match[1] )); }
   );

Beispiel

(:html:)
<h2 style="background-color: yellow;">html h2 title</h2>
(:htmlend:)

html h2 title

und so weiter