1) The link inside the #info macro was not converted correctly. #info("For more infos see [Another Page|Another Page]") was converted into: {{velocity}}{{html wiki=true}}#info("For more infos see [Another Page|Another Page]"){{/html}}{{/velocity}} instead of: {{velocity}}{{html wiki=true}}#info("For more infos see [[Another Page >> Another Page]]"){{/html}}{{/velocity}} 2) Normal text between 2 macros was not honored: #error("Some info text") Some normal text #error("Some error text") This was converted to: {{velocity}}{{html wiki=true}}#info("Some info text") Some normal text #error("Some error text"){{/html}}{{/velocity}} instead of: {{velocity}}{{html wiki=true}}#info("Some info text"){{/html}}{{/velocity}} Some normal text {{velocity}}{{html wiki=true}}#error("Some error text"){{/html}}{{/velocity}}