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

LibMarkdown: Add support for indented code blocks

This commit is contained in:
Peter Elliott 2022-04-21 23:34:09 -06:00 committed by Andreas Kling
parent dbb2347000
commit 0270e23997
2 changed files with 69 additions and 4 deletions

View file

@ -33,6 +33,9 @@ private:
String m_code;
String m_language;
String m_style;
static OwnPtr<CodeBlock> parse_backticks(LineIterator& lines);
static OwnPtr<CodeBlock> parse_indent(LineIterator& lines);
};
}