使用Confluence 4.0时,如何在usermacro中使用wiki标记(或者在用户宏编辑器中完成的其他产生动态输出的内容)。 在Confluence 3.5.3中我有一个包含以下内容的宏,我想要迁移它:
{info:title=Table of content}
{toc}
{info}
答案 0 :(得分:3)
要获取您需要为宏编写的XHTML,请按照以下步骤操作:
如果您无法访问查看存储格式选项,则解决方法是:
pageId=
。 http://{your-confluence-root}/plugins/viewstorage/viewpagestorage.action?pageId={your-page-id}
<强>参考文献:强>
Confluence 4.0 Editor FAQ
答案 1 :(得分:2)
好的,我发现了如何解决这个问题。你必须编写XHTML,下面显示了上面的例子在XHTML中的样子:
## @noparams
<ac:macro ac:name="info">
<ac:parameter ac:name="title">Table of content</ac:parameter>
<ac:rich-text-body>
<ac:macro ac:name="toc" />
</ac:rich-text-body>
</ac:macro>
我发现的另一种肮脏方法是使用转换标记(将来可能会过时):
## @noparams
<ac:macro ac:name="unmigrated-inline-wiki-markup">
<ac:parameter ac:name="atlassian-macro-output-type">BLOCK</ac:parameter>
<ac:plain-text-body><![CDATA[
{info}Here you can write wiki markup the old way, until Atlassian removes this transition markup (unmigrated-inline-wiki-markup){info}
]]></ac:plain-text-body>
</ac:macro>
答案 2 :(得分:2)
您应该在用户宏中动态地将wiki标记呈现为xhtml!这是一些代码:
## @noparams
#set($globalHelper = $action.getHelper())
#set($renderedhtml = $globalHelper.renderConfluenceMacro("{info}test{info}"))
$renderedhtml