1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:07:36 +00:00

LibMarkdown: Implement link support

We can now parse links that like this:

   visit the [SerenityOS home page](http://www.serenityos.org/)

producing proper <a> HTML elements ^)
This commit is contained in:
Sergey Bugaev 2019-10-02 22:35:43 +03:00 committed by Andreas Kling
parent 3c90aab7dd
commit 30437b0936
2 changed files with 64 additions and 17 deletions

View file

@ -9,6 +9,7 @@ public:
bool emph { false };
bool strong { false };
bool code { false };
String href;
};
struct Span {