Skip to content
Snippets Groups Projects
Commit fc790c19 authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Added handling of the constant tag.

Rev: tutorial/manpages:1.8
parent 7efa6721
No related branches found
No related tags found
No related merge requests found
...@@ -4,6 +4,13 @@ inherit Stdio.File : out; ...@@ -4,6 +4,13 @@ inherit Stdio.File : out;
string globalbase; string globalbase;
object windex; object windex;
// Conversion table:
//
// "*" "\\(**"
// "\\" "\\e"
// "()" "(\\|)"
// " - " " \\- "
void make_page(string base, TAG tag, string ind, string fbase); void make_page(string base, TAG tag, string ind, string fbase);
void mkdirhier(string what) void mkdirhier(string what)
...@@ -34,8 +41,10 @@ string make_manpage(string base, SGML data, string ind, string fbase) ...@@ -34,8 +41,10 @@ string make_manpage(string base, SGML data, string ind, string fbase)
{ {
case "method": case "method":
case "function": case "function":
case "constant":
case "class": case "class":
case "module": case "module":
case "variable":
make_page(base,tag,ind,fbase); make_page(base,tag,ind,fbase);
continue; continue;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment