Merge branch 'master' into numeric-list

This commit is contained in:
Petra Baranski
2020-10-04 18:31:29 +02:00
committed by GitHub
2 changed files with 3 additions and 2 deletions

View File

@ -73,11 +73,11 @@ public:
* Parse
*
* @method
* @param {const std::stringstream&} markdown
* @param {const std::istream&} markdown
* @return {std::string} HTML
*/
std::string
Parse(std::stringstream& markdown) const
Parse(std::istream& markdown) const
{
std::string result = "";
std::shared_ptr<BlockParser> currentBlockParser = nullptr;