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
commit 0270e23997
Notes: sideshowbarker 2024-07-17 11:32:13 +09:00
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);
};
}