mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-14 04:57:21 +01:00
32 lines
654 B
C++
32 lines
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
|