(Quick Reference)

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> … }

}

See also XWiki Rendering Framework for the details about the framework.

1.1 Migrating from version 0.1

Removal of TagLib "xwikiRender"

Use xwiki:render tag instead.

Removal of Service "RenderingService"

Use xwikiRenderer service instead.