No paragraphs for html (#27)

* htmlparser added
* Added ParserConfig
    * added option to disable the emphasized parser
    * added option to not wrap HTML in markdown within a paragraph in output
* Updated docs
* Version update 1.1.1
This commit is contained in:
Petra Baranski
2019-12-27 19:48:29 +01:00
committed by GitHub
parent 3b3e16a6bc
commit 2fe7a71bf3
9 changed files with 296 additions and 8 deletions

View File

@ -7,6 +7,10 @@ destroy the output, if there was HTML in your markdown.
The Parser expects you to use spaces and not tabs for indentation in the
markdown.
If a line starts with `<` and `config->isHTMLWrappedInParagraph` is false, it
expects that the upcoming line is HTML and therefor will not be surrounded by a
paragraph.
## Headlines
```
@ -241,6 +245,8 @@ results in
## emphasized
This can be disabled by setting `config->isEmphasizedParserEnabled = false`.
```
_emphasized text_
```