1
0
зеркало из https://github.com/quitesimpleorg/qsmaddy.git synced 2026-01-23 02:57:55 +01:00

strongparser: Underscore does not need backslash

Signed-off-by: Patrick José Pereira <patrickelectric@gmail.com>
Этот коммит содержится в:
Patrick José Pereira
2018-10-25 14:47:16 -03:00
родитель 3c54e901c3
Коммит 7c26aa0431

Просмотреть файл

@@ -44,7 +44,7 @@ public:
static std::vector<std::regex> res static std::vector<std::regex> res
{ {
std::regex{"(?!.*`.*|.*<code>.*)\\*\\*(?!.*`.*|.*<\\/code>.*)([^\\*\\*]*)\\*\\*(?!.*`.*|.*<\\/code>.*)"}, std::regex{"(?!.*`.*|.*<code>.*)\\*\\*(?!.*`.*|.*<\\/code>.*)([^\\*\\*]*)\\*\\*(?!.*`.*|.*<\\/code>.*)"},
std::regex{"(?!.*`.*|.*<code>.*)\\_\\_(?!.*`.*|.*<\\/code>.*)([^\\_\\_]*)\\_\\_(?!.*`.*|.*<\\/code>.*)"} std::regex{"(?!.*`.*|.*<code>.*)__(?!.*`.*|.*<\\/code>.*)([^__]*)__(?!.*`.*|.*<\\/code>.*)"}
}; };
static std::string replacement = "<strong>$1</strong>"; static std::string replacement = "<strong>$1</strong>";
for (const auto& re : res) for (const auto& re : res)