diff --git a/Markdown.pl b/Markdown.pl index 8154247..6336bc8 100755 --- a/Markdown.pl +++ b/Markdown.pl @@ -1801,6 +1801,7 @@ sub _RunSpanGamut { # Do hard breaks: $text =~ s/ {3,}(\n|\z)/
` tag. When you *do* want to insert a `
` break tag using Markdown, you end a line with two or more spaces, then type return. +Alternatively, a line ending with a backslash `\` that's at the very end +of the line (that's not inside a table or code block) will also translate +into a `
` tag (the `\` is replaced). To keep a literal `\` at the +end of a line (that's not inside a table or code block), double it. + If you end a line with three or more spaces then a `
` tag will be generated instead of the plain `
` tag.