From ceb8f5f36becec8ab527926ce50ccab4e7a300f7 Mon Sep 17 00:00:00 2001 From: Abel Abraham Camarillo Ojeda Date: Sat, 1 May 2010 01:47:54 -0500 Subject: [PATCH] adds my patches to Markdown.pm --- lib/Semece/Markdown.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/Semece/Markdown.pm b/lib/Semece/Markdown.pm index 2ac0843..c76236b 100644 --- a/lib/Semece/Markdown.pm +++ b/lib/Semece/Markdown.pm @@ -1,3 +1,5 @@ +# my patched markdown version, it basically adds a '  ' after each +# '

' package Text::Markdown; require 5.008_000; use strict; @@ -1320,7 +1322,7 @@ sub _FormParagraphs { foreach (@grafs) { unless (defined( $self->{_html_blocks}{$_} )) { $_ = $self->_RunSpanGamut($_); - s/^([ \t]*)/

/; + s/^([ \t]*)/

  /; $_ .= "

"; } } -- 2.11.4.GIT