Hi Paul,
On 17 Sep 2015 at 09:36:30, Paul Libbrecht ([email protected](mailto:[email protected])) wrote: > Hello XWiki experts, > > I'm porting confluence-syntax-pages from a confluence to my shiny new xwiki. > I've made a little tool to grasp the attachments (by hand) and am > copying the page content. > These pages were using two macros that I am try to reprogramme but am > failing thus far. BTW do you know that we have a Confluence importer? :) http://extensions.xwiki.org/xwiki/bin/view/Extension/Filter+Confluence+XML+module#HTutorial > I succeeded creating the macro with the easy tutorial here > http://platform.xwiki.org/xwiki/bin/view/DevGuide/WikiMacroTutorial, > including content or parameters references in the XWiki 2.1 syntax but > in the confluence syntax I am failing: > - how can I specify macro parameters there? > - confluence macros do not have open and close tags. Does it mean it > cannot have content? If the macro requires content, an error is > displayed constantly that the content is missing. If you’re interested in the Confluence grammar: https://github.com/xwiki/xwiki-rendering/blob/ae956128c40efd0445e15d531d2bf0a2e1ac34d5/xwiki-rendering-wikimodel/src/main/javacc/ConfluenceWikiScanner.jj So you can have params for example: {color:red}…{color} From the grammar file it seems only some macros may be recognized… I don’t know why the grammar doesn’t have a generic way to recognize a macro, this should probably be improved. Thanks -Vincent > thanks > > Paul _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
