2017-12-25 12:22:35 +01:00
|
|
|
/*
|
|
|
|
* This project is licensed under the MIT license. For more information see the
|
|
|
|
* LICENSE file.
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <regex>
|
|
|
|
|
|
|
|
#include "maddy/lineparser.h"
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
namespace maddy {
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* StrongParser
|
|
|
|
*
|
|
|
|
* Has to be used before the `EmphasizedParser`.
|
|
|
|
*
|
|
|
|
* @class
|
|
|
|
*/
|
|
|
|
class StrongParser : public LineParser
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Parse
|
|
|
|
*
|
2018-10-19 16:31:13 +02:00
|
|
|
* From Markdown: `text **text** __text__`
|
2017-12-25 12:22:35 +01:00
|
|
|
*
|
2018-10-19 16:31:13 +02:00
|
|
|
* To HTML: `text <strong>text</strong> <strong>text</strong>`
|
2017-12-25 12:22:35 +01:00
|
|
|
*
|
|
|
|
* @method
|
|
|
|
* @param {std::string&} line The line to interpret
|
|
|
|
* @return {void}
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
Parse(std::string& line) override
|
|
|
|
{
|
2018-10-19 16:31:13 +02:00
|
|
|
static std::vector<std::regex> res
|
|
|
|
{
|
|
|
|
std::regex{"(?!.*`.*|.*<code>.*)\\*\\*(?!.*`.*|.*<\\/code>.*)([^\\*\\*]*)\\*\\*(?!.*`.*|.*<\\/code>.*)"},
|
2018-10-25 19:47:16 +02:00
|
|
|
std::regex{"(?!.*`.*|.*<code>.*)__(?!.*`.*|.*<\\/code>.*)([^__]*)__(?!.*`.*|.*<\\/code>.*)"}
|
2018-10-19 16:31:13 +02:00
|
|
|
};
|
2017-12-25 12:22:35 +01:00
|
|
|
static std::string replacement = "<strong>$1</strong>";
|
2018-10-19 16:31:13 +02:00
|
|
|
for (const auto& re : res)
|
|
|
|
{
|
|
|
|
line = std::regex_replace(line, re, replacement);
|
|
|
|
}
|
2017-12-25 12:22:35 +01:00
|
|
|
}
|
|
|
|
}; // class StrongParser
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
} // namespace maddy
|