Confluence 2.5 のサポートは終了しています。
ドキュメントの最新バージョンを確認してください。
You can create user macros without writing a plugin through the User Macros administration menu.
Adding a user macro plugin
User Macros are a kind of Confluence plugin module.
- For more information about plugins in general, read Confluence Plugin Guide.
- To learn how to install and configure plugins (including macros), read Installing and Configuring Plugins manually.
- For an introduction to writing your own plugins, read Writing Confluence Plugins
User macro plugin modules are available in Confluence 2.3 or later
User Macro Plugin Modules
User macro plugin modules allow plugin developers to define simple macros directly in the atlassian-plugin.xml
file, without writing any additional Java code. User macro plugin modules are functionally identical to User Macros configured through the administrative console, except that they can be packaged and distributed in the same way as normal plugins.
User macros installed by plugin modules do not appear in the user macro section of the administrative console, and are not editable from within the user interface. They appear just as normal plugin modules in the plugin interface.
Configuring a Macro Plugin Module
Macro plugin modules are configured entirely inside the atlassian-plugin.xml
file, as follows:
<atlassian-plugin name='Hello World Macro' key='confluence.extra.helloworld'> <plugin-info> <description>Example user macro</description> <vendor name="Atlassian Software Systems" url="http://www.atlassian.com"/> <version>1.0</version> </plugin-info> <user-macro name='helloworld' key='helloworld' hasBody='true' bodyType='raw' outputType='html'> <description>Hello, user macro</description> <template><![CDATA[Hello, $body!]]></template> </user-macro> <!-- more macros... --> </atlassian-plugin>
- The <template> section is required, and defines the velocity template that will be used to render the macro
- All the velocity variables available in User Macros are available in user macro plugin modules
- The name and key of the macro must be specified the same as Macro Plugins
- No class attribute is required
- The attributes of the <user-macro> element match the corresponding configuration for user macros:
Available Attributes
属性 |
必須 |
既定値 |
指定可能な値 |
---|---|---|---|
hasBody |
いいえ |
false |
|
bodyType |
いいえ |
raw |
|
outputType |
いいえ |
html |
|