mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 03:27:34 +00:00
LibMarkdown: Indent code blocks
This commit is contained in:
parent
7537a045e5
commit
55b7f8ab27
3 changed files with 35 additions and 12 deletions
|
@ -9,6 +9,7 @@
|
|||
|
||||
#include <AK/OwnPtr.h>
|
||||
#include <LibMarkdown/Block.h>
|
||||
#include <LibMarkdown/Heading.h>
|
||||
#include <LibMarkdown/LineIterator.h>
|
||||
#include <LibMarkdown/Text.h>
|
||||
|
||||
|
@ -16,10 +17,11 @@ namespace Markdown {
|
|||
|
||||
class CodeBlock final : public Block {
|
||||
public:
|
||||
CodeBlock(String const& language, String const& style, String const& code)
|
||||
CodeBlock(String const& language, String const& style, String const& code, Heading* current_section)
|
||||
: m_code(move(code))
|
||||
, m_language(language)
|
||||
, m_style(style)
|
||||
, m_current_section(current_section)
|
||||
{
|
||||
}
|
||||
virtual ~CodeBlock() override = default;
|
||||
|
@ -27,14 +29,15 @@ public:
|
|||
virtual String render_to_html(bool tight = false) const override;
|
||||
virtual String render_for_terminal(size_t view_width = 0) const override;
|
||||
virtual RecursionDecision walk(Visitor&) const override;
|
||||
static OwnPtr<CodeBlock> parse(LineIterator& lines);
|
||||
static OwnPtr<CodeBlock> parse(LineIterator& lines, Heading* current_section);
|
||||
|
||||
private:
|
||||
String m_code;
|
||||
String m_language;
|
||||
String m_style;
|
||||
Heading* m_current_section;
|
||||
|
||||
static OwnPtr<CodeBlock> parse_backticks(LineIterator& lines);
|
||||
static OwnPtr<CodeBlock> parse_backticks(LineIterator& lines, Heading* current_section);
|
||||
static OwnPtr<CodeBlock> parse_indent(LineIterator& lines);
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue