Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Colouring

Colouring has only been implemented within the following elements/tags:

  • <p>
  • <span>
  • <font>

Therefore, this is restricting will restrict you from using colours inside of an containers i.e. <div> tags. The reason being if a <div> tag contains colouring and a child element within the <div> i.e. <p> also contains colouring, this will result in an invalid Wiki mark up . Jira as Jira does not allow nested colours to be present. Additionally. In additional this this, this can also potentially impact other elements i.e. Bold or Italic if nested colour is present. 

For example

HTML

No Format
<div style="color:blue">
	<p>This should be blue</p>
    <p style="color:red">This should be red</p>
</div>


Wiki mark up conversion

No Format
{color:blue}
This should be blue
{color:red}
This should be red
{color}
{color}


In Jira

...