source: syntax highlighting in global stylesheet
[sheet.git] / source.plp
index aad6898937242ae4ff8c0e303c69556a517bb36f..68808d8447e370902a319167dd1d20fd200e1462 100644 (file)
@@ -14,18 +14,7 @@ $header{content_type} = "text/html; charset=utf-8";
 <head>
 <meta http-equiv="content-type" content="<:= $header{content_type} :>">
 <title>sheet page source code</title>
-<style type="text/css">
-       body           { color: #000; background: #FFF }
-       .synComment    { color: #888 }
-       .synConstant   { color: #008 }
-       .synType,
-       .synIdentifier { color: #804 }
-       .synStatement  { }
-       .synPreProc    { }
-       .synSpecial    { color: #408 }
-       .synError      { font-weight: bold; background-color: #F00; color: #FFF }
-       .synTodo       { background-color: #FF0 }
-</style>
+<link rel="stylesheet" type="text/css" media="all" href="/base.css">
 </head>
 
 <body id="source">
@@ -65,7 +54,7 @@ print "<pre>\n";
 foreach (@$parsed) {
        my $tag = $_->[0] && ($TYPETAG{ $_->[0] } || 'span');
        my $arg = '';
-       print "<$tag$arg class=\"syn$_->[0]\">" if $tag;
+       print "<$tag$arg class=\"sy-\l$_->[0]\">" if $tag;
        if ($_->[0] eq 'Constant' and $_->[1] =~ s/^(')([a-z0-9_.]+\.plp?)(?=\1$)//) {
                printf '%s<a href="%s">%s</a>', $1, "/source/$2", $2;
        }