Skip to end of banner
Go to start of banner

HTML Macro - Cloud

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 9 Next »


Features

  • Supports capabilities for including data similar to other scripting macros.
  • Supports find and replace for adjusting resulting output.
  • Allows the user to restrict the usage of Javascript in the HTML macro (based on the configuration of Allow Javascript in the Configuration page). The Confluence page throws a rendering error if this parameter is not enabled, and Javascript is inserted while using the macro.

Other HTML macros

By default, header content is excluded as it could interfere with Confluence page HTML. Use head=true to include anyway provided it does not disturb the content.

Parameters

Examples

The following examples show how you can use the macro to render HTML content:

  • HTML from a file in the script folder in the Confluence home directory

    {html:script=#example.html}
    {html}
    
  • HTML from an attachment

    {html:script=^example.html}
    {html}
    
  • HTML put within {noformat} panel

    {html:output=wiki|noPanel=true}
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
    Aliquam fermentum vestibulum est. Cras rhoncus.
    {html}
    
  • HTML from an URL

    {html:script=#http://localhost/example.html}
    {html}
    
  • Use of CSS inline style sheet

    {html}
    <P style="font-size: x-large; color: #8000">
       Using inline style sheets - or is that inline styles?
    </p>
    {html}
    
  • Use of CSS external style sheet

    {html}
    <LINK href="http://www.cssgarden.com/css/T22/keylime_0001.css"  rel="stylesheet" title="default" type="text/css"></LINK>
    <H1>Absolute </H1>
    {html}
Make sure that style sheet is available on a server and provide an absolute URL reference to this external style sheet resource.
  • No labels