Notes
Div-tag Notes
From MadCap Flare version 12 onwards, all <div> tags are rendered as single-cell tables in MS Word.
Consequently, notes are now styled in this way:
<div class="note">
<p>Note:</p>
<p>Information of the note.</p>
</div>
The following is an example of a note formatted with just the div.note style and nothing else.
Note:
This format supersedes the paragraph-based notes described below.
Ensure that you have the latest style sheets installed in your Flare project.
Paragraph-based Notes
Paragraph-based have a separate 'noteHeading' paragraph followed by any number of 'noteContent' paragraphs.
<div class="note">
<p class="noteHeading">Note:</p>
<p class="noteContent">Information of the note.</p>
<p class="noteContent">Information of the note continued.</p>
</div>
The following is an example of a paragraph-based note.
Note:
Although supported, paragraph-based notes are historic and should no longer be used.
To use the new <div> note format, ensure that you have the latest global style sheets installed in your Flare project.
(Version 0.0.0)