From 7d3c9ec7368a5d25235e818c2c147ba7e89f6567 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABl=20Gassmann?= Date: Sun, 27 Feb 2022 14:06:15 +0100 Subject: [+] Added base project --- inc/maddy/inlinecodeparser.h | 51 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 inc/maddy/inlinecodeparser.h (limited to 'inc/maddy/inlinecodeparser.h') diff --git a/inc/maddy/inlinecodeparser.h b/inc/maddy/inlinecodeparser.h new file mode 100644 index 0000000..3699501 --- /dev/null +++ b/inc/maddy/inlinecodeparser.h @@ -0,0 +1,51 @@ +/* + * This project is licensed under the MIT license. For more information see the + * LICENSE file. + */ +#pragma once + +// ----------------------------------------------------------------------------- + +#include +#include + +#include "maddy/lineparser.h" + +// ----------------------------------------------------------------------------- + +namespace maddy { + +// ----------------------------------------------------------------------------- + +/** + * InlineCodeParser + * + * @class + */ +class InlineCodeParser : public LineParser +{ +public: + /** + * Parse + * + * From Markdown: `text `some code`` + * + * To HTML: `text some code` + * + * @method + * @param {std::string&} line The line to interpret + * @return {void} + */ + void + Parse(std::string& line) override + { + static std::regex re("`([^`]*)`"); + static std::string replacement = "$1"; + + line = std::regex_replace(line, re, replacement); + } +}; // class InlineCodeParser + +// ----------------------------------------------------------------------------- + +} // namespace maddy -- cgit v1.2.3