diff tools/mdx_del.py @ 360:2e90b63520b8

Trying to fix #180 again. Changed the syntax for strikethrough to 3 dashes to make it less harder to do accidently.
author Brian Neal <bgneal@gmail.com>
date Sat, 05 Mar 2011 02:30:53 +0000
parents f54bf3b3bece
children
line wrap: on
line diff
--- a/tools/mdx_del.py	Sat Mar 05 02:00:13 2011 +0000
+++ b/tools/mdx_del.py	Sat Mar 05 02:30:53 2011 +0000
@@ -6,7 +6,7 @@
 import markdown
 
 
-DEL_RE = r'(--)(.*?)--'
+DEL_RE = r'(---)(.*?)---'
 
 class DelExtension(markdown.Extension):