|
13 | 13 | public interface AsciidoctorModule {
|
14 | 14 |
|
15 | 15 | void preprocessor(String preprocessorClassName);
|
| 16 | + void preprocessor(String preprocessorClassName, String registrationName); |
16 | 17 | void preprocessor(RubyClass preprocessorClassName);
|
17 |
| - void preprocessor(Preprocessor preprocessor); |
18 |
| - |
| 18 | + void preprocessor(RubyClass preprocessorClassName, String registrationName); |
| 19 | + void preprocessor(Preprocessor preprocessor); |
| 20 | + void preprocessor(Preprocessor preprocessor, String registrationName); |
| 21 | + |
19 | 22 | void postprocessor(String postprocessorClassName);
|
| 23 | + void postprocessor(String postprocessorClassName, String registrationName); |
20 | 24 | void postprocessor(RubyClass postprocessorClassName);
|
| 25 | + void postprocessor(RubyClass postprocessorClassName, String registrationName); |
21 | 26 | void postprocessor(Postprocessor postprocessor);
|
22 |
| - |
| 27 | + void postprocessor(Postprocessor postprocessor, String registrationName); |
| 28 | + |
23 | 29 | void treeprocessor(String treeprocessor);
|
| 30 | + void treeprocessor(String treeprocessor, String registrationName); |
24 | 31 | void treeprocessor(RubyClass treeprocessorClassName);
|
| 32 | + void treeprocessor(RubyClass treeprocessorClassName, String registrationName); |
25 | 33 | void treeprocessor(Treeprocessor treeprocessorClassName);
|
26 |
| - |
| 34 | + void treeprocessor(Treeprocessor treeprocessorClassName, String registrationName); |
| 35 | + |
27 | 36 | void include_processor(String includeProcessorClassName);
|
| 37 | + void include_processor(String includeProcessorClassName, String registrationName); |
28 | 38 | void include_processor(RubyClass includeProcessorClassName);
|
| 39 | + void include_processor(RubyClass includeProcessorClassName, String registrationName); |
29 | 40 | void include_processor(IncludeProcessor includeProcessor);
|
30 |
| - |
| 41 | + void include_processor(IncludeProcessor includeProcessor, String registrationName); |
| 42 | + |
31 | 43 | void block_processor(String blockClassName, Object blockName);
|
| 44 | + void block_processor(String blockClassName, Object blockName, String registrationName); |
32 | 45 | void block_processor(RubyClass blockClass, Object blockName);
|
| 46 | + void block_processor(RubyClass blockClass, Object blockName, String registrationName); |
33 | 47 | void block_processor(BlockProcessor blockInstance, Object blockName);
|
34 |
| - |
| 48 | + void block_processor(BlockProcessor blockInstance, Object blockName, String registrationName); |
| 49 | + |
35 | 50 | void block_macro(String blockMacroClassName, Object blockName);
|
| 51 | + void block_macro(String blockMacroClassName, Object blockName, String registrationName); |
36 | 52 | void block_macro(Class<BlockMacroProcessor> blockMacroClass, Object blockName);
|
| 53 | + void block_macro(Class<BlockMacroProcessor> blockMacroClass, Object blockName, String registrationName); |
37 | 54 | void block_macro(BlockMacroProcessor blockMacroInstance, Object blockName);
|
38 |
| - |
| 55 | + void block_macro(BlockMacroProcessor blockMacroInstance, Object blockName, String registrationName); |
| 56 | + |
39 | 57 | void inline_macro(String blockClassName, Object blockSymbol);
|
| 58 | + void inline_macro(String blockClassName, Object blockSymbol, String registrationName); |
40 | 59 | void inline_macro(RubyClass blockClassName, Object blockSymbol);
|
| 60 | + void inline_macro(RubyClass blockClassName, Object blockSymbol, String registrationName); |
41 | 61 | void inline_macro(InlineMacroProcessor blockClassName, Object blockSymbol);
|
42 |
| - |
| 62 | + void inline_macro(InlineMacroProcessor blockClassName, Object blockSymbol, String registrationName); |
| 63 | + |
43 | 64 | void docinfo_processor(String docInfoClassName);
|
| 65 | + void docinfo_processor(String docInfoClassName, String registrationName); |
44 | 66 | void docinfo_processor(RubyClass docInfoClassName);
|
| 67 | + void docinfo_processor(RubyClass docInfoClassName, String registrationName); |
45 | 68 | void docinfo_processor(DocinfoProcessor docInfoClassName);
|
46 |
| - |
| 69 | + void docinfo_processor(DocinfoProcessor docInfoClassName, String registrationName); |
| 70 | + |
47 | 71 | void unregister_all_extensions();
|
| 72 | + void unregister_extension(String groupName); |
48 | 73 |
|
49 | 74 | Object convert(String content, Map<String, Object> options);
|
50 | 75 | Object convertFile(String filename, Map<String, Object> options);
|
|
0 commit comments