Skip to content

Commit

Permalink
Add a new line after block quotes are emitted (#206)
Browse files Browse the repository at this point in the history
  • Loading branch information
asinghvi17 authored Feb 3, 2025
1 parent 822ed6a commit 8db5ba3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/writer.jl
Original file line number Diff line number Diff line change
Expand Up @@ -784,6 +784,7 @@ function render(io::IO, mime::MIME"text/plain", node::Documenter.MarkdownAST.Nod
output = String(take!(iob))
eachline = split(output, '\n')
println.((io,), "> " .* eachline)
println(io) # newline after block quote, so that successive quotes don't merge
end
# Inline math
function render(io::IO, mime::MIME"text/plain", node::Documenter.MarkdownAST.Node, math::MarkdownAST.InlineMath, page, doc; kwargs...)
Expand Down

0 comments on commit 8db5ba3

Please sign in to comment.