Files
oddmuse/modules/headers.pl

57 lines
1.9 KiB
Perl
Raw Normal View History

2004-10-04 21:10:56 +00:00
# Copyright (C) 2004 Alex Schroeder <alex@emacswiki.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the
# Free Software Foundation, Inc.
# 59 Temple Place, Suite 330
# Boston, MA 02111-1307 USA
AddModuleDescription('headers.pl', 'Header Markup Extension');
2004-10-04 21:10:56 +00:00
2006-07-14 09:51:12 +00:00
# After toc.pl but before usemod.pl
2004-10-04 21:10:56 +00:00
push(@MyRules, \&HeadersRule);
2006-07-14 09:51:12 +00:00
$RuleOrder{ \&HeadersRule } = 95;
2004-10-04 21:10:56 +00:00
# The trickiest part is the first rule. It finds titles like the following:
#
# foo
# ---
2004-10-04 21:10:56 +00:00
#
# This assumes that --- is not found at the beginning of a line.
# Normally this is used as an M-dash in the middle of text with no
# surrounding whitespace---like this.
2004-10-04 21:10:56 +00:00
#
2004-10-19 23:39:01 +00:00
# Similarly, the horizontal rule requires an empty preceding line to
# work. We'll see how it goes. ;)
2004-10-04 21:10:56 +00:00
sub HeadersRule {
my $oldpos = pos;
if ($bol && (m/\G((.+?)[ \t]*\n(---+|===+)[ \t]*\n)/gc)) {
2004-11-27 21:37:06 +00:00
my $html = CloseHtmlEnvironments() . ($PortraitSupportColorDiv ? '</div>' : '');
2004-10-04 21:10:56 +00:00
if (substr($3,0,1) eq '=') {
2004-11-27 21:37:06 +00:00
$html .= $q->h2($2);
2004-10-04 21:10:56 +00:00
} else {
2004-12-05 03:51:45 +00:00
$html .= $q->h3($2);
2004-10-04 21:10:56 +00:00
}
2004-11-27 21:20:02 +00:00
$PortraitSupportColorDiv = 0;
$PortraitSupportColor = 0;
2004-12-05 03:51:45 +00:00
return $html . AddHtmlEnvironment('p');
} elsif ($bol && m/\G(\s*\n)*----+[ \t]*\n?/cg) {
2004-12-03 08:47:56 +00:00
my $html = CloseHtmlEnvironments() . ($PortraitSupportColorDiv ? '</div>' : '') . $q->hr();
$PortraitSupportColorDiv = 0;
$PortraitSupportColor = 0;
2004-12-05 03:51:45 +00:00
return $html . AddHtmlEnvironment('p');
2004-10-04 21:10:56 +00:00
}
return undef;
}