<< Click to display table of contents >> TRVMarkdownProperties.Extensions |
Lists Markdown extensions supported by TRichView
type // defined in RVStyle unit
TRVMarkdownExtension = (
rvmdeTables,
rvmdeFootnotes);
TRVMarkdownExtensions = set of TRVMarkdownExtension;
property Extensions: TRVMarkdownExtensions;
(introduced in version 19)
Value |
Extension |
rvmdeTables |
Tables |
rvmdeFootnotes |
Footnotes |
If support of this extension is activated, TRichView can save and load tables in Markdown format.
Limitation:
▪no table properties are saved
▪merged cells are saved as empty cells
▪only single line cell content is supported (no lists, quotes, headings in cells); however, line breaks can be exported as <br>, if rvmdsoUseBR is included in SaveOptions
▪center or right alignment is stored for a column, if the first paragraphs of all cells in this column have this alignment
▪nested tables are not saved.
If support of this extension is not activated, TRichView saves content of each table cells as normal paragraphs.
If support of this extension is activated, TRichView can save footnotes, endnotes, sidenotes and text boxes in Markdown format as footnotes. See NotesSavedAsFootnotes.
If support of this extension is not activated, TRichView saves content of notes directly in text, inside [ ] characters.
Default value:
[rvmdeTables, rvmdeFootnotes]