Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/expander_pipeline.jl
Original file line number Diff line number Diff line change
Expand Up @@ -727,6 +727,8 @@
nothing
elseif isa(result, Markdown.MD)
convert(Node, result)
elseif isa(result, Documenter.RawNode)
Node(result) # wrap directly in a Node

Check warning on line 731 in src/expander_pipeline.jl

View check run for this annotation

Codecov / codecov/patch

src/expander_pipeline.jl#L731

Added line #L731 was not covered by tests
else
# TODO: we could handle the cases where the user provides some of the Markdown library
# objects, like Paragraph.
Expand Down
Loading