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:
parent
3c90aab7dd
commit
30437b0936
2 changed files with 64 additions and 17 deletions
|
@ -9,6 +9,7 @@ public:
|
|||
bool emph { false };
|
||||
bool strong { false };
|
||||
bool code { false };
|
||||
String href;
|
||||
};
|
||||
|
||||
struct Span {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue