comparison 3rdparty/maddy/parserconfig.h @ 0:a4671277546c tip

created the repository for the thymian project
author ferencd
date Tue, 17 Aug 2021 11:19:54 +0200
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:a4671277546c
1 /*
2 * This project is licensed under the MIT license. For more information see the
3 * LICENSE file.
4 */
5 #pragma once
6
7 // -----------------------------------------------------------------------------
8
9 namespace maddy {
10
11 // -----------------------------------------------------------------------------
12
13 /**
14 * ParserConfig
15 *
16 * @class
17 */
18 struct ParserConfig
19 {
20 bool isEmphasizedParserEnabled;
21 bool isHTMLWrappedInParagraph;
22
23 ParserConfig()
24 : isEmphasizedParserEnabled(true)
25 , isHTMLWrappedInParagraph(true)
26 {}
27 }; // class ParserConfig
28
29 // -----------------------------------------------------------------------------
30
31 } // namespace maddy