definition-lists.pl 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. #! /usr/bin/perl
  2. # Copyright (C) 2019 Alex Schroeder <alex@gnu.org>
  3. # This program is free software: you can redistribute it and/or modify it under
  4. # the terms of the GNU General Public License as published by the Free Software
  5. # Foundation, either version 3 of the License, or (at your option) any later
  6. # version.
  7. #
  8. # This program is distributed in the hope that it will be useful, but WITHOUT
  9. # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  10. # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  11. #
  12. # You should have received a copy of the GNU General Public License along with
  13. # this program. If not, see <http://www.gnu.org/licenses/>.
  14. use strict;
  15. use v5.10;
  16. AddModuleDescription('definition-lists.pl', 'Definition Lists Extension');
  17. our ($q, $bol, @MyRules, @HtmlStack, $Fragment);
  18. push(@MyRules, \&DefinitionListsRule);
  19. # term
  20. # : definition
  21. sub DefinitionListsRule {
  22. if ($bol and /\G(?:\s*\n)*(\S.*)\n[ \t]*:[ \t]*/cg) {
  23. return OpenHtmlEnvironment('dl', 1) . "<dt>$1</dt>" . AddHtmlEnvironment('dd');
  24. } elsif (InElement('dd') and /\G(?:\s*\n)+(\S.*)\n[ \t]*:[ \t]*/cg) {
  25. return OpenHtmlEnvironment('dl', 1) . "<dt>$1</dt>" . AddHtmlEnvironment('dd');
  26. } elsif (InElement('dd') and /\G(\s*\n)+[ \t]*:[ \t]*/cg) {
  27. return OpenHtmlEnvironment('dl', 1) . AddHtmlEnvironment('dd');
  28. }
  29. return;
  30. }