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/linkparser.h | 53 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 inc/maddy/linkparser.h (limited to 'inc/maddy/linkparser.h') diff --git a/inc/maddy/linkparser.h b/inc/maddy/linkparser.h new file mode 100644 index 0000000..e382f21 --- /dev/null +++ b/inc/maddy/linkparser.h @@ -0,0 +1,53 @@ +/* + * 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 { + +// ----------------------------------------------------------------------------- + +/** + * LinkParser + * + * Has to be used after the `ImageParser`. + * + * @class + */ +class LinkParser : public LineParser +{ +public: + /** + * Parse + * + * From Markdown: `[text](http://example.com)` + * + * To HTML: `text` + * + * @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 LinkParser + +// ----------------------------------------------------------------------------- + +} // namespace maddy -- cgit v1.2.3