Added another character for bullet point("-")

Este commit está contenido en:
Martin Kopecký 2020-01-30 17:38:55 +01:00
padre 2fe7a71bf3
commit 51d61b68fe
Se han modificado 1 ficheros con 2 adiciones y 2 borrados

Ver fichero

@ -54,7 +54,7 @@ public:
static bool
IsStartingLine(const std::string& line)
{
static std::regex re("^\\* .*");
static std::regex re("^[\\*-] .*");
return std::regex_match(line, re);
}
@ -89,7 +89,7 @@ protected:
bool isStartOfNewListItem = IsStartingLine(line);
uint32_t indentation = getIndentationWidth(line);
static std::regex lineRegex("^(\\* )");
static std::regex lineRegex("^([\\*-] )");
line = std::regex_replace(line, lineRegex, "");
if (!this->isStarted)