This is because macros are assumed to be inline if they are in the same paragraph. Which is unfortunately false in Confluence exports: Confluence sometimes puts several block macros in the same <p> tag! The strategy to solve this is as is:
- MacroConverter classes will now provide a supportsInlineMode
- Specific MacroConverters can implement it to provide this information
- The default macro converter will look up existing macros in the wiki. If a macro is found, its supportsInlineMode method will be used. Otherwise, the macro will be assumed to support inline mode.
|