(myformat.perl):  Simplify generated HTML for "\optional{...}".
diff --git a/Doc/myformat.perl b/Doc/myformat.perl
index b833ab7..5d0fb54 100644
--- a/Doc/myformat.perl
+++ b/Doc/myformat.perl
@@ -6,7 +6,7 @@
 #
 # XXX Not complete: \indexii etc.; \funcitem etc.
 
-package main; 
+package main;
 
 # \bcode and \ecode brackets around verbatim
 
@@ -28,7 +28,7 @@
 
 sub do_cmd_optional{
 	local($_) = @_;
-	s/$any_next_pair_pr_rx/<BIG>\[<\/BIG><VAR>\2<\/VAR><BIG>\]<\/BIG>/;
+	s/$any_next_pair_pr_rx/<BIG>\[<\/BIG>\2<BIG>\]<\/BIG>/;
 	$_;
 }