Skip to content

Commit

Permalink
Merge pull request JuliaLang#9411 from JuliaLang/teh/blockquotes
Browse files Browse the repository at this point in the history
Fix typo in markdown BlockQuote rendering (fixes JuliaLang#9409)
  • Loading branch information
MikeInnes committed Dec 19, 2014
2 parents a3d95db + e463f63 commit e26ba39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/markdown/render/terminal/render.jl
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function term(io::IO, md::Paragraph, columns)
end

function term(io::IO, md::BlockQuote, columns)
s = sprint(io->term(io, Block(md.content), columns - 10))
s = sprint(io->term(io, md.content, columns - 10))
for line in split(rstrip(s), "\n")
println(io, " "^margin, "|", line)
end
Expand Down

0 comments on commit e26ba39

Please sign in to comment.