summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Allbery <rra@cpan.org>2021-09-05 13:54:02 -0700
committerRuss Allbery <rra@cpan.org>2021-09-05 13:54:02 -0700
commitbb203d6ef774f2bd0d7dae8f16d0c881d7d9e731 (patch)
tree1b40af3ef15fb4e28a2c35868b35002c1a5690d2
parente669f62608b2c82e8e632387b121ed55ce002fea (diff)
Drop support for \verbatim
This was added to generate web pages for Stanford's web site, which used server-side includes. Now that spin is only for my personal use and my own web site doesn't use it, drop support since I would prefer to add any additional HTML elements needed.
-rwxr-xr-xlib/App/DocKnot/Spin.pm11
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/App/DocKnot/Spin.pm b/lib/App/DocKnot/Spin.pm
index dbc6776..fab488f 100755
--- a/lib/App/DocKnot/Spin.pm
+++ b/lib/App/DocKnot/Spin.pm
@@ -68,9 +68,6 @@ sub output {
# Escapes &, <, and > characters found in a string.
sub escape { local $_ = shift; s/&/&amp;/g; s/</&lt;/g; s/>/&gt;/g; $_ }
-# Undo HTML entity escaping.
-sub unescape { local $_ = shift; s/&lt;/</g; s/&gt;/>/g; s/&amp;/&/g; $_ }
-
# Wrap something in paragraph markers, being careful to get newlines right.
# Special-case a paragraph consisting entirely of <span> by turning it into a
# <p> with the same class.
@@ -1048,13 +1045,6 @@ sub do_tablerow {
return (1, $output);
}
-# Output HTML text completely verbatim.
-sub do_verbatim {
- my ($format, $text) = @_;
- $text = unescape ($text);
- return (1, $text);
-}
-
# Given the name of a product, return the version number of that product.
sub do_version {
my ($format, $product) = @_;
@@ -1105,7 +1095,6 @@ sub do_version {
tablehead => [ -1, \&do_tablehead ],
tablerow => [ -1, \&do_tablerow ],
under => [ 1, \&do_under ],
- verbatim => [ 1, \&do_verbatim ],
version => [ 1, \&do_version ]);
# Add handlers for all the headings.