mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 09:07:44 +00:00
LibMarkdown: Implement introspection of the document tree
This commit is contained in:
parent
aca01932bd
commit
24e7196158
23 changed files with 319 additions and 0 deletions
|
@ -23,6 +23,17 @@ public:
|
|||
String render_to_inline_html() const;
|
||||
String render_for_terminal(size_t view_width = 0) const;
|
||||
|
||||
/*
|
||||
* Walk recursively through the document tree. Returning `RecursionDecision::Recurse` from
|
||||
* `Visitor::visit` proceeds with the next element of the pre-order walk, usually a child element.
|
||||
* Returning `RecursionDecision::Continue` skips the subtree, and usually proceeds with the next
|
||||
* sibling. Returning `RecursionDecision::Break` breaks the recursion, with no further calls to
|
||||
* any of the `Visitor::visit` methods.
|
||||
*
|
||||
* Note that `walk()` will only return `RecursionDecision::Continue` or `RecursionDecision::Break`.
|
||||
*/
|
||||
RecursionDecision walk(Visitor&) const;
|
||||
|
||||
static OwnPtr<Document> parse(const StringView&);
|
||||
|
||||
private:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue