Package org.asciidoctor.extension
Interface Processor
-
- All Known Implementing Classes:
BaseProcessor,BlockMacroProcessor,BlockProcessor,DocinfoProcessor,IncludeProcessor,InlineMacroProcessor,JRubyProcessor,MacroProcessor,Postprocessor,Preprocessor,Treeprocessor
public interface Processor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BlockcreateBlock(StructuralNode parent, java.lang.String context, java.lang.String content)BlockcreateBlock(StructuralNode parent, java.lang.String context, java.lang.String content, java.util.Map<java.lang.String,java.lang.Object> attributes)BlockcreateBlock(StructuralNode parent, java.lang.String context, java.lang.String content, java.util.Map<java.lang.String,java.lang.Object> attributes, java.util.Map<java.lang.Object,java.lang.Object> options)BlockcreateBlock(StructuralNode parent, java.lang.String context, java.util.List<java.lang.String> content)BlockcreateBlock(StructuralNode parent, java.lang.String context, java.util.List<java.lang.String> content, java.util.Map<java.lang.String,java.lang.Object> attributes)BlockcreateBlock(StructuralNode parent, java.lang.String context, java.util.List<java.lang.String> content, java.util.Map<java.lang.String,java.lang.Object> attributes, java.util.Map<java.lang.Object,java.lang.Object> options)BlockcreateBlock(StructuralNode parent, java.lang.String context, java.util.Map<java.lang.Object,java.lang.Object> options)DocumentcreateDocument(Document parentDocument)Creates an inner document for the given parent document.ListcreateList(StructuralNode parent, java.lang.String context)Creates a new List.ListcreateList(StructuralNode parent, java.lang.String context, java.util.Map<java.lang.Object,java.lang.Object> options)Creates a new List.ListcreateList(StructuralNode parent, java.lang.String context, java.util.Map<java.lang.String,java.lang.Object> attributes, java.util.Map<java.lang.Object,java.lang.Object> options)Creates a new List.ListItemcreateListItem(DescriptionList parent, java.lang.String text)ListItemcreateListItem(List parent, java.lang.String text)PhraseNodecreatePhraseNode(ContentNode parent, java.lang.String context, java.lang.String text)PhraseNodecreatePhraseNode(ContentNode parent, java.lang.String context, java.lang.String text, java.util.Map<java.lang.String,java.lang.Object> attributes)PhraseNodecreatePhraseNode(ContentNode parent, java.lang.String context, java.lang.String text, java.util.Map<java.lang.String,java.lang.Object> attributes, java.util.Map<java.lang.String,java.lang.Object> options)PhraseNodecreatePhraseNode(ContentNode parent, java.lang.String context, java.util.List<java.lang.String> text)PhraseNodecreatePhraseNode(ContentNode parent, java.lang.String context, java.util.List<java.lang.String> text, java.util.Map<java.lang.String,java.lang.Object> attributes)PhraseNodecreatePhraseNode(ContentNode parent, java.lang.String context, java.util.List<java.lang.String> text, java.util.Map<java.lang.String,java.lang.Object> attributes, java.util.Map<java.lang.Object,java.lang.Object> options)SectioncreateSection(StructuralNode parent)SectioncreateSection(StructuralNode parent, boolean numbered, java.util.Map<java.lang.Object,java.lang.Object> options)SectioncreateSection(StructuralNode parent, int level, boolean numbered, java.util.Map<java.lang.Object,java.lang.Object> options)SectioncreateSection(StructuralNode parent, java.lang.Integer level, boolean numbered, java.util.Map<java.lang.Object,java.lang.Object> options)SectioncreateSection(StructuralNode parent, java.util.Map<java.lang.Object,java.lang.Object> options)TablecreateTable(StructuralNode parent)TablecreateTable(StructuralNode parent, java.util.Map<java.lang.String,java.lang.Object> attributes)CellcreateTableCell(Column column, java.lang.String text)CellcreateTableCell(Column column, java.lang.String text, java.util.Map<java.lang.String,java.lang.Object> attributes)CellcreateTableCell(Column column, Document innerDocument)CellcreateTableCell(Column column, Document innerDocument, java.util.Map<java.lang.String,java.lang.Object> attributes)ColumncreateTableColumn(Table parent, int index)ColumncreateTableColumn(Table parent, int index, java.util.Map<java.lang.String,java.lang.Object> attributes)RowcreateTableRow(Table parent)java.util.Map<java.lang.String,java.lang.Object>getConfig()voidlog(LogRecord logRecord)voidparseContent(StructuralNode parent, java.util.List<java.lang.String> lines)Parses the given raw asciidoctor content, parses it and appends it as children to the given parent block.voidsetConfig(java.util.Map<java.lang.String,java.lang.Object> config)<T> Tunwrap(java.lang.Class<T> clazz)voidupdateConfig(java.util.Map<java.lang.String,java.lang.Object> config)
-
-
-
Method Detail
-
createTable
Table createTable(StructuralNode parent)
-
createTable
Table createTable(StructuralNode parent, java.util.Map<java.lang.String,java.lang.Object> attributes)
-
createTableColumn
Column createTableColumn(Table parent, int index, java.util.Map<java.lang.String,java.lang.Object> attributes)
-
createTableCell
Cell createTableCell(Column column, Document innerDocument, java.util.Map<java.lang.String,java.lang.Object> attributes)
-
createTableCell
Cell createTableCell(Column column, java.lang.String text, java.util.Map<java.lang.String,java.lang.Object> attributes)
-
createBlock
Block createBlock(StructuralNode parent, java.lang.String context, java.lang.String content)
-
createBlock
Block createBlock(StructuralNode parent, java.lang.String context, java.lang.String content, java.util.Map<java.lang.String,java.lang.Object> attributes)
-
createBlock
Block createBlock(StructuralNode parent, java.lang.String context, java.lang.String content, java.util.Map<java.lang.String,java.lang.Object> attributes, java.util.Map<java.lang.Object,java.lang.Object> options)
-
createBlock
Block createBlock(StructuralNode parent, java.lang.String context, java.util.List<java.lang.String> content)
-
createBlock
Block createBlock(StructuralNode parent, java.lang.String context, java.util.List<java.lang.String> content, java.util.Map<java.lang.String,java.lang.Object> attributes)
-
createBlock
Block createBlock(StructuralNode parent, java.lang.String context, java.util.List<java.lang.String> content, java.util.Map<java.lang.String,java.lang.Object> attributes, java.util.Map<java.lang.Object,java.lang.Object> options)
-
createSection
Section createSection(StructuralNode parent)
-
createSection
Section createSection(StructuralNode parent, java.util.Map<java.lang.Object,java.lang.Object> options)
-
createSection
Section createSection(StructuralNode parent, boolean numbered, java.util.Map<java.lang.Object,java.lang.Object> options)
-
createSection
Section createSection(StructuralNode parent, int level, boolean numbered, java.util.Map<java.lang.Object,java.lang.Object> options)
-
createPhraseNode
PhraseNode createPhraseNode(ContentNode parent, java.lang.String context, java.util.List<java.lang.String> text)
-
createPhraseNode
PhraseNode createPhraseNode(ContentNode parent, java.lang.String context, java.util.List<java.lang.String> text, java.util.Map<java.lang.String,java.lang.Object> attributes)
-
createPhraseNode
PhraseNode createPhraseNode(ContentNode parent, java.lang.String context, java.util.List<java.lang.String> text, java.util.Map<java.lang.String,java.lang.Object> attributes, java.util.Map<java.lang.Object,java.lang.Object> options)
-
createPhraseNode
PhraseNode createPhraseNode(ContentNode parent, java.lang.String context, java.lang.String text)
-
createPhraseNode
PhraseNode createPhraseNode(ContentNode parent, java.lang.String context, java.lang.String text, java.util.Map<java.lang.String,java.lang.Object> attributes)
-
createPhraseNode
PhraseNode createPhraseNode(ContentNode parent, java.lang.String context, java.lang.String text, java.util.Map<java.lang.String,java.lang.Object> attributes, java.util.Map<java.lang.String,java.lang.Object> options)
-
createBlock
Block createBlock(StructuralNode parent, java.lang.String context, java.util.Map<java.lang.Object,java.lang.Object> options)
-
createSection
Section createSection(StructuralNode parent, java.lang.Integer level, boolean numbered, java.util.Map<java.lang.Object,java.lang.Object> options)
-
createDocument
Document createDocument(Document parentDocument)
Creates an inner document for the given parent document. Inner documents are used for tables cells with styleasciidoc.- Parameters:
parentDocument- The parent document of the new document.- Returns:
- A new inner document.
-
createList
List createList(StructuralNode parent, java.lang.String context)
Creates a new List. This method is experimental and may change in future minor releases until declared to be stable.- Parameters:
parent- The block to which the parsed content should be added as children.context- Either"olist",ulist,colistordlist- Returns:
- A List node that can be added to the AST of a document.
-
createList
List createList(StructuralNode parent, java.lang.String context, java.util.Map<java.lang.String,java.lang.Object> attributes, java.util.Map<java.lang.Object,java.lang.Object> options)
Creates a new List. This method is experimental and may change in future minor releases until declared to be stable.- Parameters:
parent- The block to which the parsed content should be added as children.context- Either"olist",ulist,colistordlistattributes- Additional attributes to be set on the new list node, e.g.Collections.singletonMap("start", "2").options- Additional options to be set on the new list node.- Returns:
- A List node that can be added to the AST of a document.
-
createList
List createList(StructuralNode parent, java.lang.String context, java.util.Map<java.lang.Object,java.lang.Object> options)
Creates a new List. This method is experimental and may change in future minor releases until declared to be stable.- Parameters:
parent- The block to which the parsed content should be added as children.context- Either"olist",ulist,colistordlistoptions- Additional options to be set on the new list node.- Returns:
- A List node that can be added to the AST of a document.
-
createListItem
ListItem createListItem(DescriptionList parent, java.lang.String text)
-
parseContent
void parseContent(StructuralNode parent, java.util.List<java.lang.String> lines)
Parses the given raw asciidoctor content, parses it and appends it as children to the given parent block.The following example will add two paragraphs with the role
newcontentto all top level sections of a document:Asciidoctor asciidoctor = ... asciidoctor.javaExtensionRegistry().treeprocessor(new Treeprocessor() { DocumentRuby process(DocumentRuby document) { for (AbstractBlock block: document.getBlocks()) { if (block instanceof Section) { parseContent(block, Arrays.asList(new String[]{ "[newcontent]", "This is new content" "", "[newcontent]", "This is also new content"})); } } } }); - Parameters:
parent- The block to which the parsed content should be added as children.lines- Raw asciidoctor content
-
getConfig
java.util.Map<java.lang.String,java.lang.Object> getConfig()
-
log
void log(LogRecord logRecord)
-
setConfig
void setConfig(java.util.Map<java.lang.String,java.lang.Object> config)
-
updateConfig
void updateConfig(java.util.Map<java.lang.String,java.lang.Object> config)
-
unwrap
<T> T unwrap(java.lang.Class<T> clazz)
-
-