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