From 608bcd37ec853c743ac8e638d03e692ab66d902b Mon Sep 17 00:00:00 2001 From: Milan Date: Mon, 21 Dec 2020 13:05:33 +0100 Subject: [PATCH] markup.pm: remove debug output --- lib/calcms/markup.pm | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/calcms/markup.pm b/lib/calcms/markup.pm index 5724041..e5056d8 100644 --- a/lib/calcms/markup.pm +++ b/lib/calcms/markup.pm @@ -147,7 +147,6 @@ sub creole_to_html ($) { sub markdown_to_html($){ my $text = $_[0] // ''; - print STDERR "markwon!\n"; my $html = Text::Markdown::markdown($text); $html=~s!(\s)(https?://[^\s]+)(\s)!$1$2$3!g; return $html;