şunun yansıması
https://github.com/quitesimpleorg/qsmaddy.git
eşitlendi 2024-11-06 01:34:38 +01:00
32 satır
654 B
C
32 satır
654 B
C
|
/*
|
||
|
* This project is licensed under the MIT license. For more information see the
|
||
|
* LICENSE file.
|
||
|
*/
|
||
|
#pragma once
|
||
|
|
||
|
// -----------------------------------------------------------------------------
|
||
|
|
||
|
namespace maddy {
|
||
|
|
||
|
// -----------------------------------------------------------------------------
|
||
|
|
||
|
/**
|
||
|
* ParserConfig
|
||
|
*
|
||
|
* @class
|
||
|
*/
|
||
|
struct ParserConfig
|
||
|
{
|
||
|
bool isEmphasizedParserEnabled;
|
||
|
bool isHTMLWrappedInParagraph;
|
||
|
|
||
|
ParserConfig()
|
||
|
: isEmphasizedParserEnabled(true)
|
||
|
, isHTMLWrappedInParagraph(true)
|
||
|
{}
|
||
|
}; // class ParserConfig
|
||
|
|
||
|
// -----------------------------------------------------------------------------
|
||
|
|
||
|
} // namespace maddy
|