Skip to content

Instantly share code, notes, and snippets.

@khsing
Created August 21, 2012 10:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save khsing/3414374 to your computer and use it in GitHub Desktop.
Save khsing/3414374 to your computer and use it in GitHub Desktop.
patch to support strike for MT's markdown
--- mt.bk/plugins/Markdown/Markdown.pl 2012-05-10 05:03:28.000000000 -0400
+++ mt/plugins/Markdown/Markdown.pl 2012-08-21 04:29:37.000000000 -0400
@@ -971,6 +971,10 @@
$text =~ s{ (\*|_) (?=\S) (.+?) (?<=\S) \1 }
{<em>$2</em>}gsx;
+ # These lines added by Bill Eccles, 2008-07-04
+ $text =~ s{ (\s) (~~) (?=\S) (.+?) (?<=\S) (~~) }
+ {$1<strike>$3</strike>}gsx;
+
return $text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment