These three settings are in the Paragraph tab at the top of the HTML view window:
- First paragraph. These fields specify what HTML markup should surround the first paragraph of text when the text of this note is exported to HTML. They default to
<p>
and</p>
. (Equivalent to setting the $HTMLFirstParagraphStart and $HTMLFirstParagraphEnd attributes.) - Subsequent paragraphs. As above, but for all other paragraphs of text in the text of the note. (Equivalent to setting the $HTMLParagraphStart and $HTMLParagraphEnd attributes.)
- Indented. As above but for all paragraphs beginning with a tab character; such paragraphs will use
<blockquote>
. For TBXs created pre-v5, the paragraph start will remain<p style="text-indent: 3em;">
so as not to alter behaviour of exports from existing data. (Equivalent to setting $HTMLIndentedParagraphStart and $HTMLIndentedParagraphEnd). - Before and after note. Empty by default, this is what is exported immediately before a note's opening paragraph mark-up and after a note's final paragraph market, respectively. In effect, mark-up to enclose ^text^. Can be useful in connection with CSS stylesheets, such as setting before and after to
<div>
and<div>
. (Equivalent to setting the $HTMLExportBefore and $HTMLExportAfter attributes.)