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
|
|
|
|
|
|
2015-03-27 03:01:01 +02:00
|
|
|
use strict;
|
2015-08-18 10:48:03 +02:00
|
|
|
use v5.10;
|
2015-03-27 03:01:01 +02:00
|
|
|
|
2014-08-21 22:23:23 +02:00
|
|
|
AddModuleDescription('headers.pl', 'Header Markup Extension');
|
2004-10-04 21:10:56 +00:00
|
|
|
|
2015-04-10 13:31:28 +03:00
|
|
|
our ($q, $bol, %RuleOrder, @MyRules, $PortraitSupportColor, $PortraitSupportColorDiv);
|
2015-03-27 03:01:01 +02: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);
|
2015-04-03 01:35:46 +03: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-19 23:31:05 +00:00
|
|
|
# ---
|
2004-10-04 21:10:56 +00:00
|
|
|
#
|
2004-10-19 23:31:05 +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;
|
2015-08-23 21:22:12 +03:00
|
|
|
if ($bol && (m/\G((.+?)[ \t]*\n(---+|===+)[ \t]*\n)/cg)) {
|
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;
|
2004-12-03 08:37:05 +00:00
|
|
|
$PortraitSupportColor = 0;
|
2004-12-05 03:51:45 +00:00
|
|
|
return $html . AddHtmlEnvironment('p');
|
2004-10-16 16:18:30 +00:00
|
|
|
} 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
|
|
|
}
|
2015-02-27 12:10:18 +02:00
|
|
|
return;
|
2004-10-04 21:10:56 +00:00
|
|
|
}
|