annotate 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
rev   line source
ferencd@0 1 /*
ferencd@0 2 * This project is licensed under the MIT license. For more information see the
ferencd@0 3 * LICENSE file.
ferencd@0 4 */
ferencd@0 5 #pragma once
ferencd@0 6
ferencd@0 7 // -----------------------------------------------------------------------------
ferencd@0 8
ferencd@0 9 namespace maddy {
ferencd@0 10
ferencd@0 11 // -----------------------------------------------------------------------------
ferencd@0 12
ferencd@0 13 /**
ferencd@0 14 * ParserConfig
ferencd@0 15 *
ferencd@0 16 * @class
ferencd@0 17 */
ferencd@0 18 struct ParserConfig
ferencd@0 19 {
ferencd@0 20 bool isEmphasizedParserEnabled;
ferencd@0 21 bool isHTMLWrappedInParagraph;
ferencd@0 22
ferencd@0 23 ParserConfig()
ferencd@0 24 : isEmphasizedParserEnabled(true)
ferencd@0 25 , isHTMLWrappedInParagraph(true)
ferencd@0 26 {}
ferencd@0 27 }; // class ParserConfig
ferencd@0 28
ferencd@0 29 // -----------------------------------------------------------------------------
ferencd@0 30
ferencd@0 31 } // namespace maddy