TRVMarkdownProperties.NotesSavedAsFootnotes

<< Click to display table of contents >>

TRVMarkdownProperties.NotesSavedAsFootnotes

Lists notes that will be stored in Markdown as footnotes

type // defined in RVStyle unit
  TRVNoteType = (rvntFootnote, rvntEndnote, rvntSidenote, rvntTextBox);
  TRVNoteTypes = set of TRVNoteType;
property NotesSavedAsFootnotes: TRVNoteTypes;

(introduced in version 19)

Value

Note type

rvntFootnote

Footnote

rvntEndnote

Endnote

rvntSidenote

Sidenote

rvntTextBox

Text box

This property is used only if rvmdeFootnotes is included in Extensions. If this extension is activated, notes of the listed types are stored in markdown as footnotes. Otherwise, their text is stored directly in text, inside of [ ].

Only single line note content is supported (no lists, quotes, headings in note text); however, line breaks can be exported as <br>, if rvmdsoUseBR is included in SaveOptions.

 

Default value:

[rvntFootnote, rvntEndnote, rvntSidenote]