[01:07] *** ChanServ sets mode: +o PeterThoeny [18:00] *** ChanServ sets mode: +o PeterThoeny [18:08] Hi, I am trying to insert two lines of TWiki ML into a topic with CommentPlugin but cannot escape the % and stop the variable expansion happening in the form field. The idea is the user can easily edit the supplied TWiki ML and then submit it. Is this possible? Here is the relevant line, [18:08] %COMMENT{noform="on" default=" * Set LOGBOOKNAME = Mydata %INCLUDE{LogBookHome}%" button="Create"}% [18:11] by default twiki escapes ome characters on form submit to avoid cross-site scripting exploits: ' " % < > [18:11] if you define a custom comment input & output template you have control over the encoding [18:12] look at example at http://twiki.org/cgi-bin/view/Support/SupportCommentTemplate [18:12] %URLPARAM{ "comment" encode="safe" }% [18:13] if you change that to [18:13] %URLPARAM{ "comment" encode="off" }% [18:13] you will get content unescaped [19:19] Many thanks. I will try that. It would be a big help to have this point documented on the main CommentPlugin page (http://twiki.org/cgi-bin/view/TWiki/CommentPlugin)...