Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'web/web/htmlify')
-rw-r--r--web/web/htmlify8
1 files changed, 6 insertions, 2 deletions
diff --git a/web/web/htmlify b/web/web/htmlify
index e4e61961f3b..f0473ba56c1 100644
--- a/web/web/htmlify
+++ b/web/web/htmlify
@@ -6,7 +6,7 @@ while (<>){
if (/^\* (.*)$/){
print "<h1>$1</h1>\n";
} elsif (/^\*\* (.*)$/) {
- print "<h2>$1</h2>\n";
+ print "<h3>$1</h3>\n";
} elsif (/^\*\*\* (.*)$/) {
print "<h3>$1</h3>\n";
} elsif (/^\*\*\*\* (.*)$/) {
@@ -19,7 +19,11 @@ while (<>){
$name = $link = $1;
$link =~ s/ //g;
print "<a name=\"$link\">\n";
- print "<h2>$name</h2>\n";
+ if (/Beta 1/){
+ print "<h2>$name</h2>\n";
+ } else {
+ print "<h3>$name</h3>\n";
+ }
} elsif (/^Q: (.*)$/){
print "<p><a name=\"q$q\"></a><b>Question $q:</b> $1\n";
$q++;