Wiki source code of HTMLConverter

Last modified by Ricardo Julio Rodríguez Fernández on 2024/06/27 11:39

Hide last authors
Ricardo Julio Rodríguez Fernández 1.1 1 {{include reference="CKEditor.VelocityMacros"/}}
2
3 {{velocity wiki="false"}}
4 #set ($toHTML = $request.toHTML == 'true')
5 #set ($fromHTML = $request.fromHTML == 'true')
6 #if (($toHTML || $fromHTML) && $services.csrf.isTokenValid($request.formToken))
7 #set ($text = "$!request.text")
8 #set ($stripHTMLEnvelope = $request.stripHTMLEnvelope == 'true')
9 #set ($output = "#ckeditor_convert($text $toHTML $fromHTML $stripHTMLEnvelope)")
Ricardo Julio Rodríguez Fernández 2.1 10 #rawResponse($output)
Ricardo Julio Rodríguez Fernández 1.1 11 #else
12 The service used by the CKEditor source plugin to convert between HTML and wiki syntax.
13 #end
14 {{/velocity}}