mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-10 19:35:55 +08:00
15 lines
416 B
C++
15 lines
416 B
C++
#ifndef MARKDOWNPARAMETERS_H
|
|
#define MARKDOWNPARAMETERS_H
|
|
|
|
namespace HTML
|
|
{
|
|
struct TMarkdownParameters
|
|
{
|
|
bool m_bUseAlternativeHTMLTags = false; //Use HTML tags where there is no standard implementation in md (e.g. for underlines)
|
|
wchar_t m_wchUnorderedList = L'-'; // Possible options in md: -, +, *
|
|
wchar_t m_wchOrderedList = L'.'; // Possible options in md: ., )
|
|
};
|
|
}
|
|
|
|
#endif // MARKDOWNPARAMETERS_H
|