Files
core/HtmlFile2/MarkdownParameters.h
2026-04-02 08:10:57 +03:00

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