1 Introduction - Reference Documentation
Authors: Masatoshi Hayashi
Version: 1.0-RC2
Table of Contents
1 Introduction
This Grails plugin allows you to convert texts using XWiki Rendering Framework.class SomeController { def xwikiRenderer def someAction = {
String testString = """
=level1= **bold**
"""
String result = xwikiRenderer.render(textString)
// <h1>level1</h1>
// <p><b>bold</b></p>
…
}}