Package org.apache.wiki.htmltowiki.syntax
package org.apache.wiki.htmltowiki.syntax
Package Specification
Provides WikiSyntaxDecorator, an abstract SyntaxDecorator, which takes care of all the plumbing when developing one, and all the Wiki syntax decoration related classes, so all that it is needed for a custom syntax decorator is:
- Provide decorators for all the XHTML elements - just extend the abstract decorators on this package, providing only the specific wiki syntax on each case
- Extend WikiSyntaxDecorator and provide the previous implementations of all the needed decorators on the init(...) method
Related Documentation
See APIDocs for org.apache.wiki.htmltowiki.syntax.jspwiki for an example of how to develop a custom wiki syntax decorator-
ClassesClassDescriptionTranslates to wiki syntax from an
A
element.Translates to wiki syntax from aBR
element.Translates to wiki syntax from aCODE
element.Translates to wiki syntax from aDD
element.Translates to wiki syntax from aDL
element.Translates to wiki syntax from aDT
element.Translates to wiki syntax from aFORM
element.Translates to wiki syntax from anH1
element.Translates to wiki syntax from anH2
element.Translates to wiki syntax from anH3
element.Translates to wiki syntax from anH4
element.Translates to wiki syntax from anHR
element.Translates to wiki syntax from an XHTML Image.Translates to wiki syntax from aINPUT
element.Translates to wiki syntax from aLI
element.Wiki syntax helper operationsTranslates to wiki syntax from aOL
element.Translates to wiki syntax from aOPTION
element.Translates to wiki syntax from aP
element.Translates to wiki syntax from a plain text handling bold.Translates to wiki syntax from a plain text handling css classes.Translates to wiki syntax from a plain text handling special css.Translates to wiki syntax from a plain text.Translates to wiki syntax from a plain text handling italic.Translates to wiki syntax from a plain text handling monospace.Translates to wiki syntax from aSELECT
element.Translates to wiki syntax from aSTRIKE
element.Translates to wiki syntax from aSUB
element.Translates to wiki syntax from aSUP
element.Translates to wiki syntax from aTABLE
element.Translates to wiki syntax from aTBODY
element.Translates to wiki syntax from aTD
element.Translates to wiki syntax from aTEXTAREA
element.Translates to wiki syntax from aText
element.Translates to wiki syntax from aTH
element.Translates to wiki syntax from aTHEAD
element.Translates to wiki syntax from aTR
element.Translates to wiki syntax from aUL
element.Translates to wiki syntax from anUNDERLINE
element.Base Syntax decorator which translates to JSPWiki syntax.