]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Recognize `|xxxx|' as verbatim text and typeset it using <tt>.
authorMartin Mares <mj@ucw.cz>
Sat, 3 Jun 2000 17:02:30 +0000 (17:02 +0000)
committerMartin Mares <mj@ucw.cz>
Sat, 3 Jun 2000 17:02:30 +0000 (17:02 +0000)
doc/kernel-doc

index 50a68039a50fd62a6f1562b7230624b82e09c148..f4f85c15f2b4ae52c8dd9b47a75f0e13fcd563fd 100755 (executable)
@@ -79,6 +79,7 @@
 # '&struct_name' - name of a structure
 # '@parameter' - name of a parameter
 # '%CONST' - name of a constant.
+# '|code|' - literal string
 
 # match expressions used to find embedded type information
 $type_constant = "\\\%(\\w+)";
@@ -86,6 +87,7 @@ $type_func = "(\\w+\\(\\))";
 $type_param = "\\\@(\\w+)";
 $type_struct = "\\\\\\\\\\\\amp;(\\w+)";
 $type_env = "(\\\$\\w+)";
+$type_code = "\\|(.*)\\|";
 
 
 # Output conversion substitutions.
@@ -118,7 +120,8 @@ $blankline_gnome = "</para><para>\n";
 %highlights_bird = ( $type_constant, "<const/\$1/",
                     $type_func, "<func/\$1/",
                     $type_struct, "<struct/\$1/",
-                    $type_param, "<param/\$1/" );
+                    $type_param, "<param/\$1/",
+                    $type_code, "<tt>\$1</tt>");
 $blankline_bird = "<p>";
 
 # these are pretty rough