1
0
şunun yansıması https://github.com/quitesimpleorg/qsmaddy.git eşitlendi 2024-06-26 12:56:14 +02:00
qsmaddy/include/maddy/strongparser.h
M. Petra Baranski 91b687d5e7 fixed inline code for bold, em and s
In inline code the markdown for bold , emphasized
and strike trhough  is not parsed anymore.

Additionally the linker might be now faster on Linux.
2017-12-25 21:21:59 +01:00

54 satır
1.2 KiB
C++

/*
* 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
*
* From Markdown: `text **text**`
*
* To HTML: `text <strong>text</strong>`
*
* @method
* @param {std::string&} line The line to interpret
* @return {void}
*/
void
Parse(std::string& line) override
{
static std::regex re("(?!`|<code>)\\*\\*(?!`|</code>)([^\\*\\*]*)\\*\\*(?!`|</code>)");
static std::string replacement = "<strong>$1</strong>";
line = std::regex_replace(line, re, replacement);
}
}; // class StrongParser
// -----------------------------------------------------------------------------
} // namespace maddy