| Package | Description |
|---|---|
| org.xwiki.rendering.block |
Represents content elements (Paragraph, Header, List, Styles, etc) as Blocks and a full document content is represented by a XDOM object.
|
| org.xwiki.rendering.converter | |
| org.xwiki.rendering.listener | |
| org.xwiki.rendering.listener.chaining | |
| org.xwiki.rendering.parser | |
| org.xwiki.rendering.parser.xml | |
| org.xwiki.rendering.renderer | |
| org.xwiki.rendering.renderer.xml | |
| org.xwiki.rendering.syntax | |
| org.xwiki.rendering.transformation |
| Modifier and Type | Method and Description |
|---|---|
Syntax |
RawBlock.getSyntax() |
| Constructor and Description |
|---|
RawBlock(String rawContent,
Syntax syntax) |
| Modifier and Type | Method and Description |
|---|---|
void |
Converter.convert(Reader source,
Syntax sourceSyntax,
Syntax targetSyntax,
WikiPrinter printer)
Converts content from a Syntax to another and execute all registered Macro Transformations on the parsed
content.
|
| Modifier and Type | Method and Description |
|---|---|
void |
WrappingListener.onRawText(String text,
Syntax syntax) |
void |
VoidListener.onRawText(String rawContent,
Syntax syntax) |
void |
Listener.onRawText(String rawContent,
Syntax syntax)
Some text to inject directly into the listener output without parsing it.
|
void |
CompositeListener.onRawText(String text,
Syntax syntax) |
void |
QueueListener.onRawText(String text,
Syntax syntax) |
| Modifier and Type | Method and Description |
|---|---|
void |
ConsecutiveNewLineStateChainingListener.onRawText(String text,
Syntax syntax) |
void |
LookaheadChainingListener.onRawText(String text,
Syntax syntax) |
void |
AbstractChainingListener.onRawText(String text,
Syntax syntax) |
void |
BlockStateChainingListener.onRawText(String text,
Syntax syntax) |
void |
EmptyBlockChainingListener.onRawText(String text,
Syntax syntax) |
| Modifier and Type | Method and Description |
|---|---|
Syntax |
StreamParser.getSyntax() |
Syntax |
Parser.getSyntax() |
| Modifier and Type | Method and Description |
|---|---|
Syntax |
ContentHandlerBlockParserFactory.getSyntax() |
Syntax |
ContentHandlerBlockParser.getSyntax() |
Syntax |
ContentHandlerStreamParserFactory.getSyntax() |
Syntax |
ContentHandlerStreamParser.getSyntax() |
| Modifier and Type | Method and Description |
|---|---|
Syntax |
PrintRendererFactory.getSyntax() |
| Modifier and Type | Method and Description |
|---|---|
Syntax |
ContentHandlerStreamRenderer.getSyntax() |
Syntax |
ContentHandlerStreamRendererFactory.getSyntax() |
| Modifier and Type | Field and Description |
|---|---|
static Syntax |
Syntax.ANNOTATED_XHTML_1_0
This is HTML with annotations (comments) in order to allow round tripping between for example the WYSIWYG editor
and wiki syntax.
|
static Syntax |
Syntax.APT_1_0 |
static Syntax |
Syntax.CONFLUENCE_1_0
Confluence wiki syntax.
|
static Syntax |
Syntax.CONFLUENCEXHTML_1_0
Confluence XHTML based syntax.
|
static Syntax |
Syntax.CREOLE_1_0 |
static Syntax |
Syntax.DOCBOOK_4_4 |
static Syntax |
Syntax.EVENT_1_0 |
static Syntax |
Syntax.HTML_4_01 |
static Syntax |
Syntax.JSPWIKI_1_0 |
static Syntax |
Syntax.MARKDOWN_1_0 |
static Syntax |
Syntax.MARKDOWN_1_1 |
static Syntax |
Syntax.MEDIAWIKI_1_0 |
static Syntax |
Syntax.PLAIN_1_0 |
static Syntax |
Syntax.TEX_1_0 |
static Syntax |
Syntax.TWIKI_1_0 |
static Syntax |
Syntax.XDOMXML_1_0 |
static Syntax |
Syntax.XDOMXML_CURRENT |
static Syntax |
Syntax.XHTML_1_0 |
static Syntax |
Syntax.XWIKI_1_0 |
static Syntax |
Syntax.XWIKI_2_0 |
static Syntax |
Syntax.XWIKI_2_1 |
| Modifier and Type | Method and Description |
|---|---|
Syntax |
SyntaxFactory.createSyntaxFromIdString(String syntaxAsIdString) |
| Modifier and Type | Method and Description |
|---|---|
Syntax |
RenderingContext.getDefaultSyntax() |
Syntax |
TransformationContext.getSyntax() |
Syntax |
RenderingContext.getTargetSyntax() |
Syntax |
TransformationContext.getTargetSyntax() |
| Modifier and Type | Method and Description |
|---|---|
void |
TransformationManager.performTransformations(XDOM dom,
Syntax syntax)
Deprecated.
since 2.4M1 use
TransformationManager.performTransformations(Block, TransformationContext) instead |
void |
TransformationContext.setSyntax(Syntax syntax) |
void |
TransformationContext.setTargetSyntax(Syntax targetSyntax) |
void |
AbstractTransformation.transform(XDOM dom,
Syntax syntax)
Deprecated.
|
void |
Transformation.transform(XDOM dom,
Syntax syntax)
Deprecated.
since 2.4M1 use
Transformation.transform(Block, TransformationContext) instead |
| Constructor and Description |
|---|
TransformationContext(XDOM xdom,
Syntax syntax)
Some macros require the XDOM and the Syntax to be set.
|
TransformationContext(XDOM xdom,
Syntax syntax,
boolean restricted)
Some macros require the XDOM and the Syntax to be set.
|
Copyright © 2004–2015 XWiki. All rights reserved.