From 56feb8a75d775cb5a6eb8eaa95f0631ec79b3b19 Mon Sep 17 00:00:00 2001 From: Alex Schroeder Date: Sat, 19 Jun 2004 19:02:58 +0000 Subject: [PATCH] (MarkupRule): Fix em dash rule. --- modules/markup.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/markup.pl b/modules/markup.pl index c1363672..ac75587e 100644 --- a/modules/markup.pl +++ b/modules/markup.pl @@ -16,7 +16,7 @@ # 59 Temple Place, Suite 330 # Boston, MA 02111-1307 USA -$ModulesDescription .= '

$Id: markup.pl,v 1.2 2004/06/19 03:29:19 as Exp $

'; +$ModulesDescription .= '

$Id: markup.pl,v 1.3 2004/06/19 19:02:58 as Exp $

'; push(@MyRules, \&MarkupRule); @@ -32,7 +32,7 @@ sub MarkupRule { } elsif (m/\G-\> /gc) { return '→ '; # RIGHTWARDS ARROW } elsif (m/\G -- /gc) { - return '—'; # EM DASH + return '—'; # EM DASH } elsif (m/\G\.\.\./gc) { return '…'; # HORIZONTAL ELLIPSIS }