mirror of
https://github.com/progsource/maddy.git
synced 2026-03-25 07:50:39 +01:00
Merge pull request #46 from progsource/version-1.2.1
chore: update version to 1.2.1
This commit is contained in:
@@ -14,7 +14,11 @@ maddy uses [semver versioning](https://semver.org/).
|
|||||||
|
|
||||||
## Upcoming
|
## Upcoming
|
||||||
|
|
||||||
*  Parser.h version() method clashing with VERSION defines at global scope
|
* ?
|
||||||
|
|
||||||
|
## version 1.2.1 2023-08-06
|
||||||
|
|
||||||
|
*  Parser.h version() method clashing with VERSION defines at global scope
|
||||||
|
|
||||||
## version 1.2.0 2023-07-27
|
## version 1.2.0 2023-07-27
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
# maddy
|
# maddy
|
||||||
|
|
||||||
[](https://opensource.org/licenses/MIT)
|
[](https://opensource.org/licenses/MIT)
|
||||||
[](https://semver.org/)
|
[](https://semver.org/)
|
||||||
|
|
||||||
maddy is a C++ Markdown to HTML **header-only** parser library.
|
maddy is a C++ Markdown to HTML **header-only** parser library.
|
||||||
|
|
||||||
|
|||||||
@@ -57,7 +57,7 @@ public:
|
|||||||
* Check https://github.com/progsource/maddy/blob/master/CHANGELOG.md
|
* Check https://github.com/progsource/maddy/blob/master/CHANGELOG.md
|
||||||
* for the changelog.
|
* for the changelog.
|
||||||
*/
|
*/
|
||||||
static const std::string version() { static const std::string v = "1.2.0"; return v; }
|
static const std::string& version() { static const std::string v = "1.2.1"; return v; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ctor
|
* ctor
|
||||||
|
|||||||
@@ -58,11 +58,15 @@ struct ParserConfig
|
|||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @deprecated will be removed in 1.4.0 latest
|
* @deprecated will be removed in 1.4.0 latest
|
||||||
|
*
|
||||||
|
* this flag = false == `enabledParsers &= ~maddy::types::EMPHASIZED_PARSER`
|
||||||
*/
|
*/
|
||||||
bool isEmphasizedParserEnabled;
|
bool isEmphasizedParserEnabled;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @deprecated will be removed in 1.4.0 latest
|
* @deprecated will be removed in 1.4.0 latest
|
||||||
|
*
|
||||||
|
* this flag = false == `enabledParsers |= maddy::types::HTML_PARSER`
|
||||||
*/
|
*/
|
||||||
bool isHTMLWrappedInParagraph;
|
bool isHTMLWrappedInParagraph;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user