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-
Class Summary Class Description ADecorator Translates to wiki syntax from anAelement.BrDecorator Translates to wiki syntax from aBRelement.CodeDecorator Translates to wiki syntax from aCODEelement.DdDecorator Translates to wiki syntax from aDDelement.DlDecorator Translates to wiki syntax from aDLelement.DtDecorator Translates to wiki syntax from aDTelement.FormDecorator Translates to wiki syntax from aFORMelement.H1Decorator Translates to wiki syntax from anH1element.H2Decorator Translates to wiki syntax from anH2element.H3Decorator Translates to wiki syntax from anH3element.H4Decorator Translates to wiki syntax from anH4element.HrDecorator Translates to wiki syntax from anHRelement.ImageDecorator Translates to wiki syntax from an XHTML Image.InputDecorator Translates to wiki syntax from aINPUTelement.LiDecorator Translates to wiki syntax from aLIelement.MarkupHelper Wiki syntax helper operationsOlDecorator Translates to wiki syntax from aOLelement.OptionDecorator Translates to wiki syntax from aOPTIONelement.PDecorator Translates to wiki syntax from aPelement.PlainTextBoldDecorator Translates to wiki syntax from a plain text handling bold.PlainTextCssDecorator Translates to wiki syntax from a plain text handling css classes.PlainTextCssSpecialDecorator Translates to wiki syntax from a plain text handling special css.PlainTextDecorator Translates to wiki syntax from a plain text.PlainTextItalicDecorator Translates to wiki syntax from a plain text handling italic.PlainTextMonospaceDecorator Translates to wiki syntax from a plain text handling monospace.SelectDecorator Translates to wiki syntax from aSELECTelement.StrikeDecorator Translates to wiki syntax from aSTRIKEelement.SubDecorator Translates to wiki syntax from aSUBelement.SupDecorator Translates to wiki syntax from aSUPelement.TableDecorator Translates to wiki syntax from aTABLEelement.TbodyDecorator Translates to wiki syntax from aTBODYelement.TdDecorator Translates to wiki syntax from aTDelement.TextAreaDecorator Translates to wiki syntax from aTEXTAREAelement.TextElementDecorator Translates to wiki syntax from aTextelement.ThDecorator Translates to wiki syntax from aTHelement.TheadDecorator Translates to wiki syntax from aTHEADelement.TrDecorator Translates to wiki syntax from aTRelement.UlDecorator Translates to wiki syntax from aULelement.UnderlineDecorator Translates to wiki syntax from anUNDERLINEelement.WikiSyntaxDecorator Base Syntax decorator which translates to JSPWiki syntax.