Add support for the "Aesop Meta Tag". Not widely used, but not a bad idea,
either.
diff --git a/Doc/perl/l2hinit.perl b/Doc/perl/l2hinit.perl
index 0bc9aa5..b7ade49 100644
--- a/Doc/perl/l2hinit.perl
+++ b/Doc/perl/l2hinit.perl
@@ -37,6 +37,8 @@
$HAVE_GENERAL_INDEX = 0;
$HAVE_TABLE_OF_CONTENTS = 0;
+$AESOP_META_TYPE = 'information';
+
# A little painful, but lets us clean up the top level directory a little,
# and not be tied to the current directory (as far as I can tell). Testing
@@ -639,6 +641,8 @@
, "<html>\n<head>\n<title>", $title, "</title>\n"
, &meta_information($title)
, $MY_PARTIAL_HEADER
+ , ($AESOP_META_TYPE eq '' ? ''
+ : "\n<meta name='aesop' content='$AESOP_META_TYPE'>")
, "\n</head>\n<body$body>");
}