wbzyl-rack-codehighlighter 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +4 -0
- data/LICENSE +0 -0
- data/README.markdown +301 -0
- data/Rakefile +39 -0
- data/TODO +22 -0
- data/VERSION.yml +4 -0
- data/examples/app.rb +21 -0
- data/examples/config.ru +13 -0
- data/examples/public/javascripts/lang-css.js +2 -0
- data/examples/public/javascripts/lang-hs.js +2 -0
- data/examples/public/javascripts/lang-lisp.js +3 -0
- data/examples/public/javascripts/lang-lua.js +2 -0
- data/examples/public/javascripts/lang-ml.js +2 -0
- data/examples/public/javascripts/lang-proto.js +1 -0
- data/examples/public/javascripts/lang-sql.js +2 -0
- data/examples/public/javascripts/lang-vb.js +2 -0
- data/examples/public/javascripts/lang-wiki.js +1 -0
- data/examples/public/javascripts/prettify.js +31 -0
- data/examples/public/stylesheets/application.css +29 -0
- data/examples/public/stylesheets/coderay.css +126 -0
- data/examples/public/stylesheets/prettify.css +44 -0
- data/examples/public/stylesheets/syntax.css +79 -0
- data/examples/public/stylesheets/uv.css +1022 -0
- data/examples/public/stylesheets/uv/amy.css +147 -0
- data/examples/public/stylesheets/uv/blackboard.css +88 -0
- data/examples/public/stylesheets/uv/cobalt.css +149 -0
- data/examples/public/stylesheets/uv/dawn.css +121 -0
- data/examples/public/stylesheets/uv/espresso_libre.css +109 -0
- data/examples/public/stylesheets/uv/sunburst.css +180 -0
- data/examples/public/stylesheets/uv/twilight.css +137 -0
- data/examples/public/stylesheets/uv/zenburnesque.css +91 -0
- data/examples/views/index.rdiscount +75 -0
- data/examples/views/layout.rdiscount +36 -0
- metadata +95 -0
@@ -0,0 +1,2 @@
|
|
1
|
+
PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xA0\u2028\u2029]+/,null,"\t\n\r \u00a0\u2028\u2029"],["str",/^(?:[\"\u201C\u201D](?:[^\"\u201C\u201D]|[\"\u201C\u201D]{2})(?:[\"\u201C\u201D][cC]|$)|[\"\u201C\u201D](?:[^\"\u201C\u201D]|[\"\u201C\u201D]{2})*(?:[\"\u201C\u201D]|$))/,null,'"\u201c\u201d'],["com",/^[\'\u2018\u2019][^\r\n\u2028\u2029]*/,null,"'\u2018\u2019"]],[["kwd",/^(?:AddHandler|AddressOf|Alias|And|AndAlso|Ansi|As|Assembly|Auto|Boolean|ByRef|Byte|ByVal|Call|Case|Catch|CBool|CByte|CChar|CDate|CDbl|CDec|Char|CInt|Class|CLng|CObj|Const|CShort|CSng|CStr|CType|Date|Decimal|Declare|Default|Delegate|Dim|DirectCast|Do|Double|Each|Else|ElseIf|End|EndIf|Enum|Erase|Error|Event|Exit|Finally|For|Friend|Function|Get|GetType|GoSub|GoTo|Handles|If|Implements|Imports|In|Inherits|Integer|Interface|Is|Let|Lib|Like|Long|Loop|Me|Mod|Module|MustInherit|MustOverride|MyBase|MyClass|Namespace|New|Next|Not|NotInheritable|NotOverridable|Object|On|Option|Optional|Or|OrElse|Overloads|Overridable|Overrides|ParamArray|Preserve|Private|Property|Protected|Public|RaiseEvent|ReadOnly|ReDim|RemoveHandler|Resume|Return|Select|Set|Shadows|Shared|Short|Single|Static|Step|Stop|String|Structure|Sub|SyncLock|Then|Throw|To|Try|TypeOf|Unicode|Until|Variant|Wend|When|While|With|WithEvents|WriteOnly|Xor|EndIf|GoSub|Let|Variant|Wend)\b/i,
|
2
|
+
null],["com",/^REM[^\r\n\u2028\u2029]*/i],["lit",/^(?:True\b|False\b|Nothing\b|\d+(?:E[+\-]?\d+[FRD]?|[FRDSIL])?|(?:&H[0-9A-F]+|&O[0-7]+)[SIL]?|\d*\.\d+(?:E[+\-]?\d+)?[FRD]?|#\s+(?:\d+[\-\/]\d+[\-\/]\d+(?:\s+\d+:\d+(?::\d+)?(\s*(?:AM|PM))?)?|\d+:\d+(?::\d+)?(\s*(?:AM|PM))?)\s+#)/i],["pln",/^(?:(?:[a-z]|_\w)\w*|\[(?:[a-z]|_\w)\w*\])/i],["pun",/^[^\w\t\n\r \"\'\[\]\xA0\u2018\u2019\u201C\u201D\u2028\u2029]+/],["pun",/^(?:\[|\])/]]),["vb","vbs"]);
|
@@ -0,0 +1 @@
|
|
1
|
+
PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xA0a-gi-z0-9]+/,null,"\t\n\r \u00a0abcdefgijklmnopqrstuvwxyz0123456789"],["pun",/^[=*~\^\[\]]+/,null,"=*~^[]"]],[["kwd",/^#[a-z]+\b/,/(?:^|[\r\n])$/],["lit",/^(?:[A-Z][a-z][a-z0-9]+[A-Z][a-z][a-zA-Z0-9]+)\b/],["lang-",/^\{\{\{([\s\S]+?)\}\}\}/],["lang-",/^`([^\r\n`]+)`/],["str",/^https?:\/\/[^\/?#\s]*(?:\/[^?#\s]*)?(?:\?[^#\s]*)?(?:#\S*)?/i],["pln",/^[\s\S][^#=*~^A-Zh\{`\[]+/]]),["wiki"]);
|
@@ -0,0 +1,31 @@
|
|
1
|
+
(function(){
|
2
|
+
var j=null,n=true;window.PR_SHOULD_USE_CONTINUATION=n;window.PR_TAB_WIDTH=8;window.PR_normalizedHtml=window.PR=window.prettyPrintOne=window.prettyPrint=void 0;window._pr_isIE6=function(){var K=navigator&&navigator.userAgent&&/\bMSIE 6\./.test(navigator.userAgent);window._pr_isIE6=function(){return K};return K};
|
3
|
+
var ba="a",ca="z",da="A",ea="Z",fa="!",ga="!=",ha="!==",ia="#",ja="%",ka="%=",x="&",la="&&",ma="&&=",na="&=",oa="(",pa="*",qa="*=",ra="+=",sa=",",ta="-=",ua="->",va="/",Da="/=",Ea=":",Fa="::",Ga=";",z="<",Ha="<<",Ia="<<=",Ja="<=",Ka="=",La="==",Ma="===",B=">",Na=">=",Oa=">>",Pa=">>=",Qa=">>>",Ra=">>>=",Sa="?",Ta="@",Ua="[",Va="^",Wa="^=",Xa="^^",Ya="^^=",Za="{",$a="|",ab="|=",bb="||",cb="||=",db="~",eb="break",fb="case",gb="continue",hb="delete",ib="do",jb="else",kb="finally",lb="instanceof",mb="return",
|
4
|
+
nb="throw",ob="try",pb="typeof",qb="(?:(?:(?:^|[^0-9.])\\.{1,3})|(?:(?:^|[^\\+])\\+)|(?:(?:^|[^\\-])-)",rb="|\\b",sb="\\$1",tb="|^)\\s*$",ub="&",vb="<",wb=">",xb=""",yb="&#",zb="x",Ab="'",C='"',Bb=" ",Cb="XMP",Db="</",Eb='="',D="PRE",Fb='<!DOCTYPE foo PUBLIC "foo bar">\n<foo />',H="",Gb="\t",Hb="\n",Ib="nocode",Jb=' $1="$2$3$4"',I="pln",L="lang-",M="src",N="default-markup",O="default-code",P="com",Kb="dec",S="pun",Lb="lang-js",Mb="lang-css",T="tag",U="atv",Nb="<>/=",V="atn",Ob=" \t\r\n",
|
5
|
+
W="str",Pb="'\"",Qb="'\"`",Rb="\"'",Sb=" \r\n",X="lit",Tb="123456789",Ub=".",Vb="kwd",Wb="typ",Xb="break continue do else for if return while auto case char const default double enum extern float goto int long register short signed sizeof static struct switch typedef union unsigned void volatile catch class delete false import new operator private protected public this throw true try alignof align_union asm axiom bool concept concept_map const_cast constexpr decltype dynamic_cast explicit export friend inline late_check mutable namespace nullptr reinterpret_cast static_assert static_cast template typeid typename typeof using virtual wchar_t where break continue do else for if return while auto case char const default double enum extern float goto int long register short signed sizeof static struct switch typedef union unsigned void volatile catch class delete false import new operator private protected public this throw true try boolean byte extends final finally implements import instanceof null native package strictfp super synchronized throws transient as base by checked decimal delegate descending event fixed foreach from group implicit in interface internal into is lock object out override orderby params readonly ref sbyte sealed stackalloc string select uint ulong unchecked unsafe ushort var break continue do else for if return while auto case char const default double enum extern float goto int long register short signed sizeof static struct switch typedef union unsigned void volatile catch class delete false import new operator private protected public this throw true try debugger eval export function get null set undefined var with Infinity NaN caller delete die do dump elsif eval exit foreach for goto if import last local my next no our print package redo require sub undef unless until use wantarray while BEGIN END break continue do else for if return while and as assert class def del elif except exec finally from global import in is lambda nonlocal not or pass print raise try with yield False True None break continue do else for if return while alias and begin case class def defined elsif end ensure false in module next nil not or redo rescue retry self super then true undef unless until when yield BEGIN END break continue do else for if return while case done elif esac eval fi function in local set then until ",
|
6
|
+
Y="</span>",Yb='<span class="',Zb='">',$b="$1 ",ac="<br />",bc="console",cc="cannot override language handler %s",dc="htm",ec="html",fc="mxml",gc="xhtml",hc="xml",ic="xsl",jc="break continue do else for if return while auto case char const default double enum extern float goto int long register short signed sizeof static struct switch typedef union unsigned void volatile catch class delete false import new operator private protected public this throw true try alignof align_union asm axiom bool concept concept_map const_cast constexpr decltype dynamic_cast explicit export friend inline late_check mutable namespace nullptr reinterpret_cast static_assert static_cast template typeid typename typeof using virtual wchar_t where ",
|
7
|
+
kc="c",lc="cc",mc="cpp",nc="cxx",oc="cyc",pc="m",qc="break continue do else for if return while auto case char const default double enum extern float goto int long register short signed sizeof static struct switch typedef union unsigned void volatile catch class delete false import new operator private protected public this throw true try boolean byte extends final finally implements import instanceof null native package strictfp super synchronized throws transient as base by checked decimal delegate descending event fixed foreach from group implicit in interface internal into is lock object out override orderby params readonly ref sbyte sealed stackalloc string select uint ulong unchecked unsafe ushort var ",
|
8
|
+
rc="cs",sc="break continue do else for if return while auto case char const default double enum extern float goto int long register short signed sizeof static struct switch typedef union unsigned void volatile catch class delete false import new operator private protected public this throw true try boolean byte extends final finally implements import instanceof null native package strictfp super synchronized throws transient ",tc="java",uc="break continue do else for if return while case done elif esac eval fi function in local set then until ",
|
9
|
+
vc="bsh",wc="csh",xc="sh",yc="break continue do else for if return while and as assert class def del elif except exec finally from global import in is lambda nonlocal not or pass print raise try with yield False True None ",zc="cv",Ac="py",Bc="caller delete die do dump elsif eval exit foreach for goto if import last local my next no our print package redo require sub undef unless until use wantarray while BEGIN END ",Cc="perl",Dc="pl",Ec="pm",Fc="break continue do else for if return while alias and begin case class def defined elsif end ensure false in module next nil not or redo rescue retry self super then true undef unless until when yield BEGIN END ",
|
10
|
+
Gc="rb",Hc="break continue do else for if return while auto case char const default double enum extern float goto int long register short signed sizeof static struct switch typedef union unsigned void volatile catch class delete false import new operator private protected public this throw true try debugger eval export function get null set undefined var with Infinity NaN ",Ic="js",Jc="pre",Kc="code",Lc="xmp",Mc="prettyprint",Nc="class",Oc="br",Pc="\r\n";
|
11
|
+
(function(){function K(b){b=b.split(/ /g);var a={};for(var d=b.length;--d>=0;){var c=b[d];if(c)a[c]=j}return a}function Qc(b){return b>=ba&&b<=ca||b>=da&&b<=ea}function Q(b,a,d,c){b.unshift(d,c||0);try{a.splice.apply(a,b)}finally{b.splice(0,2)}}var Rc=(function(){var b=[fa,ga,ha,ia,ja,ka,x,la,ma,na,oa,pa,qa,ra,sa,ta,ua,va,Da,Ea,Fa,Ga,z,Ha,Ia,Ja,Ka,La,Ma,B,Na,Oa,Pa,Qa,Ra,Sa,Ta,Ua,Va,Wa,Xa,Ya,Za,$a,ab,bb,cb,db,eb,fb,gb,hb,ib,jb,kb,lb,mb,nb,ob,pb],a=qb;for(var d=0;d<b.length;++d){var c=b[d];a+=Qc(c.charAt(0))?
|
12
|
+
rb+c:$a+c.replace(/([^=<>:&])/g,sb)}a+=tb;return new RegExp(a)})(),wa=/&/g,xa=/</g,ya=/>/g,Sc=/\"/g;function Tc(b){return b.replace(wa,ub).replace(xa,vb).replace(ya,wb).replace(Sc,xb)}function Z(b){return b.replace(wa,ub).replace(xa,vb).replace(ya,wb)}var Uc=/</g,Vc=/>/g,Wc=/'/g,Xc=/"/g,Yc=/&/g,Zc=/ /g;function $c(b){var a=b.indexOf(x);if(a<0)return b;for(--a;(a=b.indexOf(yb,a+1))>=0;){var d=b.indexOf(Ga,a);if(d>=0){var c=b.substring(a+3,d),g=10;if(c&&c.charAt(0)===zb){c=
|
13
|
+
c.substring(1);g=16}var e=parseInt(c,g);isNaN(e)||(b=b.substring(0,a)+String.fromCharCode(e)+b.substring(d+1))}}return b.replace(Uc,z).replace(Vc,B).replace(Wc,Ab).replace(Xc,C).replace(Yc,x).replace(Zc,Bb)}function za(b){return Cb===b.tagName}function R(b,a){switch(b.nodeType){case 1:var d=b.tagName.toLowerCase();a.push(z,d);for(var c=0;c<b.attributes.length;++c){var g=b.attributes[c];if(!!g.specified){a.push(Bb);R(g,a)}}a.push(B);for(var e=b.firstChild;e;e=e.nextSibling)R(e,a);if(b.firstChild||
|
14
|
+
!/^(?:br|link|img)$/.test(d))a.push(Db,d,B);break;case 2:a.push(b.name.toLowerCase(),Eb,Tc(b.value),C);break;case 3:case 4:a.push(Z(b.nodeValue));break}}var $=j;function ad(b){if(j===$){var a=document.createElement(D);a.appendChild(document.createTextNode(Fb));$=!/</.test(a.innerHTML)}if($){var d=b.innerHTML;if(za(b))d=Z(d);return d}var c=[];for(var g=b.firstChild;g;g=g.nextSibling)R(g,c);return c.join(H)}function bd(b){var a=0;return function(d){var c=j,g=0;for(var e=0,k=d.length;e<k;++e){var f=
|
15
|
+
d.charAt(e);switch(f){case Gb:c||(c=[]);c.push(d.substring(g,e));var h=b-a%b;a+=h;for(;h>=0;h-=" ".length)c.push(" ".substring(0,h));g=e+1;break;case Hb:a=0;break;default:++a}}if(!c)return d;c.push(d.substring(g));return c.join(H)}}var cd=/(?:[^<]+|<!--[\s\S]*?--\>|<!\[CDATA\[([\s\S]*?)\]\]>|<\/?[a-zA-Z][^>]*>|<)/g,dd=/^<!--/,ed=/^<\[CDATA\[/,fd=/^<br\b/i,Aa=/^<(\/?)([a-zA-Z]+)/;function gd(b){var a=b.match(cd),d=[],c=0,g=[];if(a)for(var e=0,k=a.length;e<k;++e){var f=
|
16
|
+
a[e];if(f.length>1&&f.charAt(0)===z){if(!dd.test(f))if(ed.test(f)){d.push(f.substring(9,f.length-3));c+=f.length-12}else if(fd.test(f)){d.push(Hb);++c}else if(f.indexOf(Ib)>=0&&hd(f)){var h=f.match(Aa)[2],q=1,i;a:for(i=e+1;i<k;++i){var o=a[i].match(Aa);if(o&&o[2]===h)if(o[1]===va){if(--q===0)break a}else++q}if(i<k){g.push(c,a.slice(e,i+1).join(H));e=i}else g.push(c,f)}else g.push(c,f)}else{var r=$c(f);d.push(r);c+=r.length}}return{source:d.join(H),tags:g}}function hd(b){return!!b.replace(/\s(\w+)\s*=\s*(?:\"([^\"]*)\"|'([^\']*)'|(\S+))/g,
|
17
|
+
Jb).match(/[cC][lL][aA][sS][sS]=\"[^\"]*\bnocode\b/)}function aa(b,a,d,c){if(!!a){var g=d.call({},a);if(b)for(var e=g.length;(e-=2)>=0;)g[e]+=b;c.push.apply(c,g)}}function J(b,a){var d={};(function(){var k=b.concat(a);for(var f=k.length;--f>=0;){var h=k[f],q=h[3];if(q)for(var i=q.length;--i>=0;)d[q.charAt(i)]=h}})();var c=a.length,g=/\S/,e=function(k,f){f=f||0;var h=[f,I],q=H,i=0,o=k;while(o.length){var r,l=j,m,p=d[o.charAt(0)];if(p){m=o.match(p[1]);l=m[0];r=p[0]}else{for(var s=0;s<c;++s){p=a[s];
|
18
|
+
var u=p[2];if(!(u&&!u.test(q))){if(m=o.match(p[1])){l=m[0];r=p[0];break}}}if(!l){r=I;l=o.substring(0,1)}}var t=L===r.substring(0,5);if(t&&!(m&&m[1])){t=false;r=M}if(t){var A=m[1],v=l.indexOf(A),E=v+A.length,F=r.substring(5);G.hasOwnProperty(F)||(F=/^\s*</.test(A)?N:O);aa(f+i,l.substring(0,v),e,h);aa(f+i+v,l.substring(v,E),G[F],h);aa(f+i+E,l.substring(E),e,h)}else h.push(f+i,r);i+=l.length;o=o.substring(l.length);if(r!==P&&g.test(l))q=l}return h};return e}var id=J([],[[I,/^[^<?]+/,j],[Kb,/^<!\w[^>]*(?:>|$)/,
|
19
|
+
j],[P,/^<!--[\s\S]*?(?:--\>|$)/,j],[L,/^<\?([\s\S]+?)(?:\?>|$)/,j],[L,/^<%([\s\S]+?)(?:%>|$)/,j],[S,/^(?:<[%?]|[%?]>)/,j],[L,/^<xmp\b[^>]*>([\s\S]+?)<\/xmp\b[^>]*>/i,j],[Lb,/^<script\b[^>]*>([\s\S]+?)<\/script\b[^>]*>/i,j],[Mb,/^<style\b[^>]*>([\s\S]+?)<\/style\b[^>]*>/i,j],[T,/^<\/?\w[^<>]*>/,j]]),jd=/^(<[^>]*>)([\s\S]*)(<\/[^>]*>)$/;function kd(b){var a=id(b);for(var d=0;d<a.length;d+=2)if(a[d+1]===M){var c,g;c=a[d];g=d+2<a.length?a[d+2]:b.length;var e=b.substring(c,g),k=e.match(jd);if(k)a.splice(d,
|
20
|
+
2,c,T,c+k[1].length,M,c+k[1].length+(k[2]||H).length,T)}return a}var ld=J([[U,/^\'[^\']*(?:\'|$)/,j,Ab],[U,/^\"[^\"]*(?:\"|$)/,j,C],[S,/^[<>\/=]+/,j,Nb]],[[T,/^[\w:\-]+/,/^</],[U,/^[\w\-]+/,/^=/],[V,/^[\w:\-]+/,j],[I,/^\s+/,j,Ob]]);function md(b,a){for(var d=0;d<a.length;d+=2){var c=a[d+1];if(c===T){var g,e;g=a[d];e=d+2<a.length?a[d+2]:b.length;var k=b.substring(g,e),f=ld(k,g);Q(f,a,d,2);d+=f.length-2}}return a}function y(b){var a=[],d=[];if(b.tripleQuotedStrings)a.push([W,/^(?:\'\'\'(?:[^\'\\]|\\[\s\S]|\'{1,2}(?=[^\']))*(?:\'\'\'|$)|\"\"\"(?:[^\"\\]|\\[\s\S]|\"{1,2}(?=[^\"]))*(?:\"\"\"|$)|\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$))/,
|
21
|
+
j,Pb]);else b.multiLineStrings?a.push([W,/^(?:\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$)|\`(?:[^\\\`]|\\[\s\S])*(?:\`|$))/,j,Qb]):a.push([W,/^(?:\'(?:[^\\\'\r\n]|\\.)*(?:\'|$)|\"(?:[^\\\"\r\n]|\\.)*(?:\"|$))/,j,Rb]);d.push([I,/^(?:[^\'\"\`\/\#]+)/,j,Sb]);b.hashComments&&a.push([P,/^#[^\r\n]*/,j,ia]);if(b.cStyleComments){d.push([P,/^\/\/[^\r\n]*/,j]);d.push([P,/^\/\*[\s\S]*?(?:\*\/|$)/,j])}b.regexLiterals&&d.push([W,/^\/(?=[^\/*])(?:[^\/\x5B\x5C]|\x5C[\s\S]|\x5B(?:[^\x5C\x5D]|\x5C[\s\S])*(?:\x5D|$))+(?:\/|$)/,
|
22
|
+
Rc]);var c=K(b.keywords),g=J(a,d),e=J([],[[I,/^\s+/,j,Sb],[I,/^[a-z_$@][a-z_$@0-9]*/i,j],[X,/^0x[a-f0-9]+[a-z]/i,j],[X,/^(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d+)(?:e[+\-]?\d+)?[a-z]*/i,j,Tb],[S,/^[^\s\w\.$@]+/,j]]);function k(f,h){for(var q=0;q<h.length;q+=2){var i=h[q+1];if(i===I){var o,r,l,m;o=h[q];r=q+2<h.length?h[q+2]:f.length;l=f.substring(o,r);m=e(l,o);for(var p=0,s=m.length;p<s;p+=2){var u=m[p+1];if(u===I){var t=m[p],A=p+2<s?m[p+2]:l.length,v=f.substring(t,A);if(v===Ub)m[p+1]=S;else if(v in c)m[p+
|
23
|
+
1]=Vb;else if(/^@?[A-Z][A-Z$]*[a-z][A-Za-z$]*$/.test(v))m[p+1]=v.charAt(0)===Ta?X:Wb}}Q(m,h,q,2);q+=m.length-2}}return h}return function(f){var h=g(f);return h=k(f,h)}}var Ba=y({keywords:Xb,hashComments:n,cStyleComments:n,multiLineStrings:n,regexLiterals:n});function nd(b,a){var d=false;for(var c=0;c<a.length;c+=2){var g=a[c+1],e,k;if(g===V){e=a[c];k=c+2<a.length?a[c+2]:b.length;d=/^on|^style$/i.test(b.substring(e,k))}else if(g===U){if(d){e=a[c];k=c+2<a.length?a[c+2]:b.length;var f=b.substring(e,
|
24
|
+
k),h=f.length,q=h>=2&&/^[\"\']/.test(f)&&f.charAt(0)===f.charAt(h-1),i,o,r;if(q){o=e+1;r=k-1;i=f}else{o=e+1;r=k-1;i=f.substring(1,f.length-1)}var l=Ba(i);for(var m=0,p=l.length;m<p;m+=2)l[m]+=o;if(q){l.push(r,U);Q(l,a,c+2,0)}else Q(l,a,c,2)}d=false}}return a}function od(b){var a=kd(b);a=md(b,a);return a=nd(b,a)}function pd(b,a,d){var c=[],g=0,e=j,k=j,f=0,h=0,q=bd(window.PR_TAB_WIDTH),i=/([\r\n ]) /g,o=/(^| ) /gm,r=/\r\n?|\n/g,l=/[ \r\n]$/,m=n;function p(u){if(u>g){if(e&&e!==k){c.push(Y);e=j}if(!e&&
|
25
|
+
k){e=k;c.push(Yb,e,Zb)}var t=Z(q(b.substring(g,u))).replace(m?o:i,$b);m=l.test(t);c.push(t.replace(r,ac));g=u}}while(n){var s;if(s=f<a.length?h<d.length?a[f]<=d[h]:n:false){p(a[f]);if(e){c.push(Y);e=j}c.push(a[f+1]);f+=2}else if(h<d.length){p(d[h]);k=d[h+1];h+=2}else break}p(b.length);e&&c.push(Y);return c.join(H)}var G={};function w(b,a){for(var d=a.length;--d>=0;){var c=a[d];if(G.hasOwnProperty(c))bc in window&&console.log(cc,c);else G[c]=b}}w(Ba,[O]);w(od,[N,dc,ec,fc,gc,hc,ic]);w(y({keywords:jc,
|
26
|
+
hashComments:n,cStyleComments:n}),[kc,lc,mc,nc,oc,pc]);w(y({keywords:qc,hashComments:n,cStyleComments:n}),[rc]);w(y({keywords:sc,cStyleComments:n}),[tc]);w(y({keywords:uc,hashComments:n,multiLineStrings:n}),[vc,wc,xc]);w(y({keywords:yc,hashComments:n,multiLineStrings:n,tripleQuotedStrings:n}),[zc,Ac]);w(y({keywords:Bc,hashComments:n,multiLineStrings:n,regexLiterals:n}),[Cc,Dc,Ec]);w(y({keywords:Fc,hashComments:n,multiLineStrings:n,regexLiterals:n}),[Gc]);w(y({keywords:Hc,cStyleComments:n,regexLiterals:n}),
|
27
|
+
[Ic]);function Ca(b,a){try{var d=gd(b),c=d.source,g=d.tags;G.hasOwnProperty(a)||(a=/^\s*</.test(c)?N:O);var e=G[a].call({},c);return pd(c,g,e)}catch(k){if(bc in window){console.log(k);console.a()}return b}}function qd(b){var a=window._pr_isIE6(),d=[document.getElementsByTagName(Jc),document.getElementsByTagName(Kc),document.getElementsByTagName(Lc)],c=[];for(var g=0;g<d.length;++g)for(var e=0,k=d[g].length;e<k;++e)c.push(d[g][e]);var f=0;function h(){var q=window.PR_SHOULD_USE_CONTINUATION?(new Date).getTime()+
|
28
|
+
250:Infinity;for(;f<c.length&&(new Date).getTime()<q;f++){var i=c[f];if(i.className&&i.className.indexOf(Mc)>=0){var o=i.className.match(/\blang-(\w+)\b/);if(o)o=o[1];var r=false;for(var l=i.parentNode;l;l=l.parentNode)if((l.tagName===Jc||l.tagName===Kc||l.tagName===Lc)&&l.className&&l.className.indexOf(Mc)>=0){r=n;break}if(!r){var m=ad(i);m=m.replace(/(?:\r\n?|\n)$/,H);var p=Ca(m,o);if(za(i)){var s=document.createElement(D);for(var u=0;u<i.attributes.length;++u){var t=i.attributes[u];if(t.specified){var A=
|
29
|
+
t.name.toLowerCase();if(A===Nc)s.className=t.value;else s.setAttribute(t.name,t.value)}}s.innerHTML=p;i.parentNode.replaceChild(s,i);i=s}else i.innerHTML=p;if(a&&i.tagName===D){var v=i.getElementsByTagName(Oc);for(var E=v.length;--E>=0;){var F=v[E];F.parentNode.replaceChild(document.createTextNode(Pc),F)}}}}}if(f<c.length)setTimeout(h,250);else b&&b()}h()}window.PR_normalizedHtml=R;window.prettyPrintOne=Ca;window.prettyPrint=qd;window.PR={createSimpleLexer:J,registerLangHandler:w,sourceDecorator:y,
|
30
|
+
PR_ATTRIB_NAME:V,PR_ATTRIB_VALUE:U,PR_COMMENT:P,PR_DECLARATION:Kb,PR_KEYWORD:Vb,PR_LITERAL:X,PR_NOCODE:Ib,PR_PLAIN:I,PR_PUNCTUATION:S,PR_SOURCE:M,PR_STRING:W,PR_TAG:T,PR_TYPE:Wb}})();
|
31
|
+
})()
|
@@ -0,0 +1,29 @@
|
|
1
|
+
html {
|
2
|
+
margin: 0;
|
3
|
+
padding: 0;
|
4
|
+
background-color: #0C7D85;
|
5
|
+
line-height: 1.6;
|
6
|
+
}
|
7
|
+
|
8
|
+
body {
|
9
|
+
margin: 1em auto 1em auto;
|
10
|
+
padding: 1em 2em 2em 1em;
|
11
|
+
width: 760px;
|
12
|
+
border: 1px solid black;
|
13
|
+
background-color: #E8DDCB;
|
14
|
+
}
|
15
|
+
|
16
|
+
pre {
|
17
|
+
padding: 0.5em 0 0.5em 2em;
|
18
|
+
background-color: #D7D3C1;
|
19
|
+
}
|
20
|
+
|
21
|
+
h1, h2, h3 {
|
22
|
+
color: #0C7D85;
|
23
|
+
}
|
24
|
+
|
25
|
+
/* rdiscount comments */
|
26
|
+
|
27
|
+
h6 {
|
28
|
+
display: none;
|
29
|
+
}
|
@@ -0,0 +1,126 @@
|
|
1
|
+
.CodeRay {
|
2
|
+
background-color: #f8f8f8;
|
3
|
+
border: 1px solid silver;
|
4
|
+
font-family: 'Courier New', 'Terminal', monospace;
|
5
|
+
color: #000;
|
6
|
+
}
|
7
|
+
.CodeRay pre { margin: 0px }
|
8
|
+
|
9
|
+
div.CodeRay { }
|
10
|
+
|
11
|
+
span.CodeRay { white-space: pre; border: 0px; padding: 2px }
|
12
|
+
|
13
|
+
table.CodeRay { border-collapse: collapse; width: 100%; padding: 2px }
|
14
|
+
table.CodeRay td { padding: 2px 4px; vertical-align: top }
|
15
|
+
|
16
|
+
.CodeRay .line_numbers, .CodeRay .no {
|
17
|
+
background-color: #def;
|
18
|
+
color: gray;
|
19
|
+
text-align: right;
|
20
|
+
}
|
21
|
+
.CodeRay .line_numbers tt { font-weight: bold }
|
22
|
+
.CodeRay .no { padding: 0px 4px }
|
23
|
+
.CodeRay .code { width: 100% }
|
24
|
+
|
25
|
+
ol.CodeRay { font-size: 10pt }
|
26
|
+
ol.CodeRay li { white-space: pre }
|
27
|
+
|
28
|
+
.CodeRay .code pre { overflow: auto }
|
29
|
+
|
30
|
+
.CodeRay .debug { color:white ! important; background:blue ! important; }
|
31
|
+
|
32
|
+
.CodeRay .af { color:#00C }
|
33
|
+
.CodeRay .an { color:#007 }
|
34
|
+
.CodeRay .at { color:#f08 }
|
35
|
+
.CodeRay .av { color:#700 }
|
36
|
+
.CodeRay .aw { color:#C00 }
|
37
|
+
.CodeRay .bi { color:#509; font-weight:bold }
|
38
|
+
.CodeRay .c { color:#888; }
|
39
|
+
|
40
|
+
.CodeRay .ch { color:#04D }
|
41
|
+
.CodeRay .ch .k { color:#04D }
|
42
|
+
.CodeRay .ch .dl { color:#039 }
|
43
|
+
|
44
|
+
.CodeRay .cl { color:#B06; font-weight:bold }
|
45
|
+
.CodeRay .co { color:#036; font-weight:bold }
|
46
|
+
.CodeRay .cr { color:#0A0 }
|
47
|
+
.CodeRay .cv { color:#369 }
|
48
|
+
.CodeRay .df { color:#099; font-weight:bold }
|
49
|
+
.CodeRay .di { color:#088; font-weight:bold }
|
50
|
+
.CodeRay .dl { color:black }
|
51
|
+
.CodeRay .do { color:#970 }
|
52
|
+
.CodeRay .dt { color:#34b }
|
53
|
+
.CodeRay .ds { color:#D42; font-weight:bold }
|
54
|
+
.CodeRay .e { color:#666; font-weight:bold }
|
55
|
+
.CodeRay .en { color:#800; font-weight:bold }
|
56
|
+
.CodeRay .er { color:#F00; background-color:#FAA }
|
57
|
+
.CodeRay .ex { color:#F00; font-weight:bold }
|
58
|
+
.CodeRay .fl { color:#60E; font-weight:bold }
|
59
|
+
.CodeRay .fu { color:#06B; font-weight:bold }
|
60
|
+
.CodeRay .gv { color:#d70; font-weight:bold }
|
61
|
+
.CodeRay .hx { color:#058; font-weight:bold }
|
62
|
+
.CodeRay .i { color:#00D; font-weight:bold }
|
63
|
+
.CodeRay .ic { color:#B44; font-weight:bold }
|
64
|
+
|
65
|
+
.CodeRay .il { background: #eee; color: black }
|
66
|
+
.CodeRay .il .il { background: #ddd }
|
67
|
+
.CodeRay .il .il .il { background: #ccc }
|
68
|
+
.CodeRay .il .idl { font-weight: bold; color: #777 }
|
69
|
+
|
70
|
+
.CodeRay .im { color:#f00; }
|
71
|
+
.CodeRay .in { color:#B2B; font-weight:bold }
|
72
|
+
.CodeRay .iv { color:#33B }
|
73
|
+
.CodeRay .la { color:#970; font-weight:bold }
|
74
|
+
.CodeRay .lv { color:#963 }
|
75
|
+
.CodeRay .oc { color:#40E; font-weight:bold }
|
76
|
+
.CodeRay .of { color:#000; font-weight:bold }
|
77
|
+
.CodeRay .op { }
|
78
|
+
.CodeRay .pc { color:#038; font-weight:bold }
|
79
|
+
.CodeRay .pd { color:#369; font-weight:bold }
|
80
|
+
.CodeRay .pp { color:#579; }
|
81
|
+
.CodeRay .ps { color:#00C; font-weight: bold; }
|
82
|
+
.CodeRay .pt { color:#349; font-weight:bold }
|
83
|
+
.CodeRay .r, .kw { color:#080; font-weight:bold }
|
84
|
+
|
85
|
+
.CodeRay .ke { color: #808; }
|
86
|
+
.CodeRay .ke .dl { color: #606; }
|
87
|
+
.CodeRay .ke .ch { color: #80f; }
|
88
|
+
.CodeRay .vl { color: #088; }
|
89
|
+
|
90
|
+
.CodeRay .rx { background-color:#fff0ff }
|
91
|
+
.CodeRay .rx .k { color:#808 }
|
92
|
+
.CodeRay .rx .dl { color:#404 }
|
93
|
+
.CodeRay .rx .mod { color:#C2C }
|
94
|
+
.CodeRay .rx .fu { color:#404; font-weight: bold }
|
95
|
+
|
96
|
+
.CodeRay .s { background-color:#fff0f0; color: #D20; }
|
97
|
+
.CodeRay .s .s { background-color:#ffe0e0 }
|
98
|
+
.CodeRay .s .s .s { background-color:#ffd0d0 }
|
99
|
+
.CodeRay .s .k { }
|
100
|
+
.CodeRay .s .ch { color: #b0b; }
|
101
|
+
.CodeRay .s .dl { color: #710; }
|
102
|
+
|
103
|
+
.CodeRay .sh { background-color:#f0fff0; color:#2B2 }
|
104
|
+
.CodeRay .sh .k { }
|
105
|
+
.CodeRay .sh .dl { color:#161 }
|
106
|
+
|
107
|
+
.CodeRay .sy { color:#A60 }
|
108
|
+
.CodeRay .sy .k { color:#A60 }
|
109
|
+
.CodeRay .sy .dl { color:#630 }
|
110
|
+
|
111
|
+
.CodeRay .ta { color:#070 }
|
112
|
+
.CodeRay .tf { color:#070; font-weight:bold }
|
113
|
+
.CodeRay .ts { color:#D70; font-weight:bold }
|
114
|
+
.CodeRay .ty { color:#339; font-weight:bold }
|
115
|
+
.CodeRay .v { color:#036 }
|
116
|
+
.CodeRay .xt { color:#444 }
|
117
|
+
|
118
|
+
.CodeRay .ins { background: #afa; }
|
119
|
+
.CodeRay .del { background: #faa; }
|
120
|
+
.CodeRay .chg { color: #aaf; background: #007; }
|
121
|
+
.CodeRay .head { color: #f8f; background: #505 }
|
122
|
+
|
123
|
+
.CodeRay .ins .ins { color: #080; font-weight:bold }
|
124
|
+
.CodeRay .del .del { color: #800; font-weight:bold }
|
125
|
+
.CodeRay .chg .chg { color: #66f; }
|
126
|
+
.CodeRay .head .head { color: #f4f; }
|
@@ -0,0 +1,44 @@
|
|
1
|
+
/* Pretty printing styles. Used with prettify.js. */
|
2
|
+
|
3
|
+
/* the default theme / style / pallette
|
4
|
+
.prettyprint .str { color: #080; }
|
5
|
+
.prettyprint .kwd { color: #008; }
|
6
|
+
.prettyprint .com { color: #800; }
|
7
|
+
.prettyprint .typ { color: #606; }
|
8
|
+
.prettyprint .lit { color: #066; }
|
9
|
+
.prettyprint .pun { color: #660; }
|
10
|
+
.prettyprint .pln { color: #000; }
|
11
|
+
.prettyprint .tag { color: #008; }
|
12
|
+
.prettyprint .atn { color: #606; }
|
13
|
+
.prettyprint .atv { color: #080; }
|
14
|
+
.prettyprint .dec { color: #606; }
|
15
|
+
pre.prettyprint { padding: 2px; border: 1px solid #888; }
|
16
|
+
*/
|
17
|
+
|
18
|
+
/* more-prettier pallette by Ryan Tomayko
|
19
|
+
http://tomayko.com/writings/javascript-prettification
|
20
|
+
*/
|
21
|
+
.prettyprint .str { color:#181; font-style:italic }
|
22
|
+
.prettyprint .kwd { color:#369; }
|
23
|
+
.prettyprint .com { color:#666; }
|
24
|
+
.prettyprint .typ { color:#C40; }
|
25
|
+
.prettyprint .lit { color:#900; }
|
26
|
+
.prettyprint .pun { color:#000; font-weight:bold }
|
27
|
+
.prettyprint .pln { color:#333; }
|
28
|
+
.prettyprint .tag { color:#369; font-weight:bold }
|
29
|
+
.prettyprint .atn { color:#939; font-weight:bold }
|
30
|
+
.prettyprint .atv { color:#181; }
|
31
|
+
.prettyprint .dec { color:#606; }
|
32
|
+
|
33
|
+
@media print {
|
34
|
+
.prettyprint .str { color: #060; }
|
35
|
+
.prettyprint .kwd { color: #006; font-weight: bold; }
|
36
|
+
.prettyprint .com { color: #600; font-style: italic; }
|
37
|
+
.prettyprint .typ { color: #404; font-weight: bold; }
|
38
|
+
.prettyprint .lit { color: #044; }
|
39
|
+
.prettyprint .pun { color: #440; }
|
40
|
+
.prettyprint .pln { color: #000; }
|
41
|
+
.prettyprint .tag { color: #006; font-weight: bold; }
|
42
|
+
.prettyprint .atn { color: #404; }
|
43
|
+
.prettyprint .atv { color: #060; }
|
44
|
+
}
|
@@ -0,0 +1,79 @@
|
|
1
|
+
/* ruby */
|
2
|
+
|
3
|
+
pre .normal {}
|
4
|
+
pre .comment { color: #444; font-style: italic; }
|
5
|
+
pre .keyword { color: #A00; font-weight: bold; }
|
6
|
+
pre .method { color: #077; }
|
7
|
+
pre .class { color: #074; }
|
8
|
+
pre .module { color: #050; }
|
9
|
+
pre .punct { color: #447; font-weight: bold; }
|
10
|
+
pre .symbol { color: #099; }
|
11
|
+
pre .string { color: #944; background: #FFE; }
|
12
|
+
pre .char { color: #F07; }
|
13
|
+
pre .ident { color: #004; }
|
14
|
+
pre .constant { color: #07F; }
|
15
|
+
pre .regex { color: #B66; background: #FEF; }
|
16
|
+
pre .number { color: #F99; }
|
17
|
+
pre .attribute { color: #7BB; }
|
18
|
+
pre .global { color: #7FB; }
|
19
|
+
pre .expr { color: #227; }
|
20
|
+
pre .escape { color: #277; }
|
21
|
+
|
22
|
+
/* ansic */
|
23
|
+
|
24
|
+
pre .predefined_types { color: #DD0000; }
|
25
|
+
|
26
|
+
pre .hex { color: #F99; }
|
27
|
+
pre .oct { color: #F99; }
|
28
|
+
pre .integer { color: #07F; }
|
29
|
+
pre .float { color: #F99; }
|
30
|
+
pre .preprocessor { color: #FF00FF; }
|
31
|
+
|
32
|
+
pre .other { color: black; }
|
33
|
+
|
34
|
+
/* xml */
|
35
|
+
|
36
|
+
pre .namespace { color: #B66; font-weight: bold; }
|
37
|
+
pre .tag { color: #00A; }
|
38
|
+
pre .entity { color: #444; font-weight: bold; }
|
39
|
+
|
40
|
+
/* css21 */
|
41
|
+
|
42
|
+
pre .cdo { color: #666; }
|
43
|
+
pre .cdc { color: #666; }
|
44
|
+
pre .invalid { color: #FF0000; }
|
45
|
+
pre .property { color: #ff4500; }
|
46
|
+
pre .ident { color: #000080; }
|
47
|
+
pre .id { color: #0000FF; }
|
48
|
+
pre .important { color: #EE0000; background: #ffd700;}
|
49
|
+
|
50
|
+
pre .import { color: #A0A; }
|
51
|
+
pre .page { color: #A0A; }
|
52
|
+
pre .media { color: #A0A; }
|
53
|
+
pre .charset { color: #A0A; }
|
54
|
+
|
55
|
+
pre .uri { color: #7BB; }
|
56
|
+
pre .function { color: #077; }
|
57
|
+
|
58
|
+
pre .hash { color: #07F; }
|
59
|
+
pre .ems { color: #07F; }
|
60
|
+
pre .exs { color: #07F; }
|
61
|
+
pre .length { color: #07F; }
|
62
|
+
pre .angle { color: #07F; }
|
63
|
+
pre .time { color: #07F; }
|
64
|
+
pre .freq { color: #07F; }
|
65
|
+
pre .dimension { color: #07F; }
|
66
|
+
pre .percentage { color: #07F; }
|
67
|
+
pre .number { color: #07F; }
|
68
|
+
|
69
|
+
/* sqlite */
|
70
|
+
|
71
|
+
pre .datatype { color: #D00; }
|
72
|
+
|
73
|
+
/* javascript */
|
74
|
+
|
75
|
+
pre .predefined_types { color: #D00; }
|
76
|
+
pre .unicode { color: #F99; }
|
77
|
+
|
78
|
+
|
79
|
+
pre .other { color: black; }
|
@@ -0,0 +1,1022 @@
|
|
1
|
+
pre.amy .PolymorphicVariants {
|
2
|
+
color: #60B0FF;
|
3
|
+
font-style: italic;
|
4
|
+
}
|
5
|
+
pre.amy .KeywordDecorator {
|
6
|
+
color: #D0D0FF;
|
7
|
+
}
|
8
|
+
pre.amy .Punctuation {
|
9
|
+
color: #805080;
|
10
|
+
}
|
11
|
+
pre.amy .InheritedClass {
|
12
|
+
}
|
13
|
+
pre.amy .InvalidDepricated {
|
14
|
+
background-color: #CC66FF;
|
15
|
+
color: #200020;
|
16
|
+
}
|
17
|
+
pre.amy .LibraryVariable {
|
18
|
+
}
|
19
|
+
pre.amy .TokenReferenceOcamlyacc {
|
20
|
+
color: #3CB0D0;
|
21
|
+
}
|
22
|
+
pre.amy .Storage {
|
23
|
+
color: #B0FFF0;
|
24
|
+
}
|
25
|
+
pre.amy .KeywordOperator {
|
26
|
+
color: #A0A0FF;
|
27
|
+
}
|
28
|
+
pre.amy .CharacterConstant {
|
29
|
+
color: #666666;
|
30
|
+
}
|
31
|
+
pre.amy .line-numbers {
|
32
|
+
background-color: #800000;
|
33
|
+
color: #000000;
|
34
|
+
}
|
35
|
+
pre.amy .ClassName {
|
36
|
+
color: #70E080;
|
37
|
+
}
|
38
|
+
pre.amy .Int64Constant {
|
39
|
+
font-style: italic;
|
40
|
+
}
|
41
|
+
pre.amy .NonTerminalReferenceOcamlyacc {
|
42
|
+
color: #C0F0F0;
|
43
|
+
}
|
44
|
+
pre.amy .TokenDefinitionOcamlyacc {
|
45
|
+
color: #3080A0;
|
46
|
+
}
|
47
|
+
pre.amy .ClassType {
|
48
|
+
color: #70E0A0;
|
49
|
+
}
|
50
|
+
pre.amy .ControlKeyword {
|
51
|
+
color: #80A0FF;
|
52
|
+
}
|
53
|
+
pre.amy .LineNumberDirectives {
|
54
|
+
text-decoration: underline;
|
55
|
+
color: #C080C0;
|
56
|
+
}
|
57
|
+
pre.amy .FloatingPointConstant {
|
58
|
+
text-decoration: underline;
|
59
|
+
}
|
60
|
+
pre.amy .Int32Constant {
|
61
|
+
font-weight: bold;
|
62
|
+
}
|
63
|
+
pre.amy .TagName {
|
64
|
+
color: #009090;
|
65
|
+
}
|
66
|
+
pre.amy .ModuleTypeDefinitions {
|
67
|
+
text-decoration: underline;
|
68
|
+
color: #B000B0;
|
69
|
+
}
|
70
|
+
pre.amy .Integer {
|
71
|
+
color: #7090B0;
|
72
|
+
}
|
73
|
+
pre.amy .Camlp4TempParser {
|
74
|
+
}
|
75
|
+
pre.amy .InvalidIllegal {
|
76
|
+
font-weight: bold;
|
77
|
+
background-color: #FFFF00;
|
78
|
+
color: #400080;
|
79
|
+
}
|
80
|
+
pre.amy .LibraryConstant {
|
81
|
+
background-color: #200020;
|
82
|
+
}
|
83
|
+
pre.amy .ModuleDefinitions {
|
84
|
+
color: #B000B0;
|
85
|
+
}
|
86
|
+
pre.amy .Variants {
|
87
|
+
color: #60B0FF;
|
88
|
+
}
|
89
|
+
pre.amy .CompilerDirectives {
|
90
|
+
color: #C080C0;
|
91
|
+
}
|
92
|
+
pre.amy .FloatingPointInfixOperator {
|
93
|
+
text-decoration: underline;
|
94
|
+
}
|
95
|
+
pre.amy .BuiltInConstant1 {
|
96
|
+
}
|
97
|
+
pre.amy {
|
98
|
+
background-color: #200020;
|
99
|
+
color: #D0D0FF;
|
100
|
+
}
|
101
|
+
pre.amy .FunctionArgument {
|
102
|
+
color: #80B0B0;
|
103
|
+
}
|
104
|
+
pre.amy .FloatingPointPrefixOperator {
|
105
|
+
text-decoration: underline;
|
106
|
+
}
|
107
|
+
pre.amy .NativeintConstant {
|
108
|
+
font-weight: bold;
|
109
|
+
}
|
110
|
+
pre.amy .BuiltInConstant {
|
111
|
+
color: #707090;
|
112
|
+
}
|
113
|
+
pre.amy .BooleanConstant {
|
114
|
+
color: #8080A0;
|
115
|
+
}
|
116
|
+
pre.amy .LibraryClassType {
|
117
|
+
}
|
118
|
+
pre.amy .TagAttribute {
|
119
|
+
}
|
120
|
+
pre.amy .Keyword {
|
121
|
+
color: #A080FF;
|
122
|
+
}
|
123
|
+
pre.amy .UserDefinedConstant {
|
124
|
+
}
|
125
|
+
pre.amy .String {
|
126
|
+
color: #999999;
|
127
|
+
}
|
128
|
+
pre.amy .Camlp4Code {
|
129
|
+
background-color: #350060;
|
130
|
+
}
|
131
|
+
pre.amy .NonTerminalDefinitionOcamlyacc {
|
132
|
+
color: #90E0E0;
|
133
|
+
}
|
134
|
+
pre.amy .FunctionName {
|
135
|
+
color: #50A0A0;
|
136
|
+
}
|
137
|
+
pre.amy .SupportModules {
|
138
|
+
color: #A00050;
|
139
|
+
}
|
140
|
+
pre.amy .Variable {
|
141
|
+
color: #008080;
|
142
|
+
}
|
143
|
+
pre.amy .Comment {
|
144
|
+
background-color: #200020;
|
145
|
+
color: #404080;
|
146
|
+
font-style: italic;
|
147
|
+
}
|
148
|
+
pre.blackboard .LatexSupport {
|
149
|
+
color: #FBDE2D;
|
150
|
+
}
|
151
|
+
pre.blackboard .OcamlInfixOperator {
|
152
|
+
color: #8DA6CE;
|
153
|
+
}
|
154
|
+
pre.blackboard .MetaFunctionCallPy {
|
155
|
+
color: #BECDE6;
|
156
|
+
}
|
157
|
+
pre.blackboard .Superclass {
|
158
|
+
color: #FF6400;
|
159
|
+
font-style: italic;
|
160
|
+
}
|
161
|
+
pre.blackboard .Constant {
|
162
|
+
color: #D8FA3C;
|
163
|
+
}
|
164
|
+
pre.blackboard {
|
165
|
+
background-color: #0C1021;
|
166
|
+
color: #F8F8F8;
|
167
|
+
}
|
168
|
+
pre.blackboard .OcamlFPConstant {
|
169
|
+
text-decoration: underline;
|
170
|
+
}
|
171
|
+
pre.blackboard .OcamlFPInfixOperator {
|
172
|
+
text-decoration: underline;
|
173
|
+
}
|
174
|
+
pre.blackboard .Support {
|
175
|
+
color: #8DA6CE;
|
176
|
+
}
|
177
|
+
pre.blackboard .OcamlOperator {
|
178
|
+
color: #F8F8F8;
|
179
|
+
}
|
180
|
+
pre.blackboard .Storage {
|
181
|
+
color: #FBDE2D;
|
182
|
+
}
|
183
|
+
pre.blackboard .line-numbers {
|
184
|
+
background-color: #253B76;
|
185
|
+
color: #FFFFFF;
|
186
|
+
}
|
187
|
+
pre.blackboard .StringInterpolation {
|
188
|
+
color: #FF6400;
|
189
|
+
}
|
190
|
+
pre.blackboard .InvalidIllegal {
|
191
|
+
background-color: #9D1E15;
|
192
|
+
color: #F8F8F8;
|
193
|
+
}
|
194
|
+
pre.blackboard .PlistUnquotedString {
|
195
|
+
color: #FFFFFF;
|
196
|
+
}
|
197
|
+
pre.blackboard .OcamlVariant {
|
198
|
+
color: #D5E0F3;
|
199
|
+
}
|
200
|
+
pre.blackboard .MetaTag {
|
201
|
+
color: #7F90AA;
|
202
|
+
}
|
203
|
+
pre.blackboard .LatexEnvironment {
|
204
|
+
background-color: #F7F7F8;
|
205
|
+
}
|
206
|
+
pre.blackboard .OcamlFPPrefixOperator {
|
207
|
+
text-decoration: underline;
|
208
|
+
}
|
209
|
+
pre.blackboard .OcamlPrefixOperator {
|
210
|
+
color: #8DA6CE;
|
211
|
+
}
|
212
|
+
pre.blackboard .EntityNameSection {
|
213
|
+
color: #FFFFFF;
|
214
|
+
}
|
215
|
+
pre.blackboard .String {
|
216
|
+
color: #61CE3C;
|
217
|
+
}
|
218
|
+
pre.blackboard .Keyword {
|
219
|
+
color: #FBDE2D;
|
220
|
+
}
|
221
|
+
pre.blackboard .LatexEnvironmentNested {
|
222
|
+
background-color: #7691F3;
|
223
|
+
}
|
224
|
+
pre.blackboard .InvalidDeprecated {
|
225
|
+
color: #AB2A1D;
|
226
|
+
font-style: italic;
|
227
|
+
}
|
228
|
+
pre.blackboard .Variable {
|
229
|
+
}
|
230
|
+
pre.blackboard .Entity {
|
231
|
+
color: #FF6400;
|
232
|
+
}
|
233
|
+
pre.blackboard .Comment {
|
234
|
+
color: #AEAEAE;
|
235
|
+
}
|
236
|
+
pre.cobalt .BlockQuote {
|
237
|
+
background-color: #004480;
|
238
|
+
}
|
239
|
+
pre.cobalt .DiffInserted {
|
240
|
+
background-color: #154F00;
|
241
|
+
color: #F8F8F8;
|
242
|
+
}
|
243
|
+
pre.cobalt .DiffHeader {
|
244
|
+
background-color: #000E1A;
|
245
|
+
color: #F8F8F8;
|
246
|
+
}
|
247
|
+
pre.cobalt .CssPropertyValue {
|
248
|
+
color: #F6F080;
|
249
|
+
}
|
250
|
+
pre.cobalt .CCPreprocessorDirective {
|
251
|
+
color: #AFC4DB;
|
252
|
+
}
|
253
|
+
pre.cobalt .Constant {
|
254
|
+
color: #FF628C;
|
255
|
+
}
|
256
|
+
pre.cobalt .List {
|
257
|
+
background-color: #130D26;
|
258
|
+
}
|
259
|
+
pre.cobalt .DiffChanged {
|
260
|
+
background-color: #806F00;
|
261
|
+
color: #F8F8F8;
|
262
|
+
}
|
263
|
+
pre.cobalt .EmbeddedSource {
|
264
|
+
background-color: #223545;
|
265
|
+
color: #FFFFFF;
|
266
|
+
}
|
267
|
+
pre.cobalt .Support {
|
268
|
+
color: #80FFBB;
|
269
|
+
}
|
270
|
+
pre.cobalt .Punctuation {
|
271
|
+
color: #E1EFFF;
|
272
|
+
}
|
273
|
+
pre.cobalt .RawMarkup {
|
274
|
+
background-color: #74B9D3;
|
275
|
+
}
|
276
|
+
pre.cobalt .CssConstructorArgument {
|
277
|
+
color: #EB939A;
|
278
|
+
}
|
279
|
+
pre.cobalt .LangVariable {
|
280
|
+
color: #FF80E1;
|
281
|
+
}
|
282
|
+
pre.cobalt .Storage {
|
283
|
+
color: #FFEE80;
|
284
|
+
}
|
285
|
+
pre.cobalt .line-numbers {
|
286
|
+
background-color: #B36539;
|
287
|
+
color: #000000;
|
288
|
+
}
|
289
|
+
pre.cobalt .CssClass {
|
290
|
+
color: #5FE461;
|
291
|
+
}
|
292
|
+
pre.cobalt .StringConstant {
|
293
|
+
color: #80FF82;
|
294
|
+
}
|
295
|
+
pre.cobalt .CssAtRule {
|
296
|
+
color: #F6AA11;
|
297
|
+
}
|
298
|
+
pre.cobalt .BoldMarkup {
|
299
|
+
font-weight: bold;
|
300
|
+
color: #C1AFFF;
|
301
|
+
}
|
302
|
+
pre.cobalt .CssTagName {
|
303
|
+
color: #9EFFFF;
|
304
|
+
}
|
305
|
+
pre.cobalt .Exception {
|
306
|
+
color: #FF1E00;
|
307
|
+
}
|
308
|
+
pre.cobalt .SupportConstant {
|
309
|
+
color: #EB939A;
|
310
|
+
}
|
311
|
+
pre.cobalt .ItalicMarkup {
|
312
|
+
color: #B8FFD9;
|
313
|
+
font-style: italic;
|
314
|
+
}
|
315
|
+
pre.cobalt .DiffDeleted {
|
316
|
+
background-color: #4C0900;
|
317
|
+
color: #F8F8F8;
|
318
|
+
}
|
319
|
+
pre.cobalt .CCPreprocessorLine {
|
320
|
+
color: #8996A8;
|
321
|
+
}
|
322
|
+
pre.cobalt .SupportFunction {
|
323
|
+
color: #FFB054;
|
324
|
+
}
|
325
|
+
pre.cobalt .CssAdditionalConstants {
|
326
|
+
color: #EDF080;
|
327
|
+
}
|
328
|
+
pre.cobalt .MetaTagA {
|
329
|
+
color: #9EFFFF;
|
330
|
+
}
|
331
|
+
pre.cobalt .StringRegexp {
|
332
|
+
color: #80FFC2;
|
333
|
+
}
|
334
|
+
pre.cobalt .StringEmbeddedSource {
|
335
|
+
color: #9EFF80;
|
336
|
+
}
|
337
|
+
pre.cobalt .EntityInheritedClass {
|
338
|
+
color: #80FCFF;
|
339
|
+
font-style: italic;
|
340
|
+
}
|
341
|
+
pre.cobalt .FunctionCall {
|
342
|
+
color: #FFEE80;
|
343
|
+
}
|
344
|
+
pre.cobalt {
|
345
|
+
background-color: #002240;
|
346
|
+
color: #FFFFFF;
|
347
|
+
}
|
348
|
+
pre.cobalt .CssId {
|
349
|
+
color: #FFB454;
|
350
|
+
}
|
351
|
+
pre.cobalt .StringVariable {
|
352
|
+
color: #EDEF7D;
|
353
|
+
}
|
354
|
+
pre.cobalt .Invalid {
|
355
|
+
background-color: #800F00;
|
356
|
+
color: #F8F8F8;
|
357
|
+
}
|
358
|
+
pre.cobalt .String {
|
359
|
+
color: #3AD900;
|
360
|
+
}
|
361
|
+
pre.cobalt .Keyword {
|
362
|
+
color: #FF9D00;
|
363
|
+
}
|
364
|
+
pre.cobalt .HeadingMarkup {
|
365
|
+
font-weight: bold;
|
366
|
+
background-color: #001221;
|
367
|
+
color: #C8E4FD;
|
368
|
+
}
|
369
|
+
pre.cobalt .CssPropertyName {
|
370
|
+
color: #9DF39F;
|
371
|
+
}
|
372
|
+
pre.cobalt .DoctypeXmlProcessing {
|
373
|
+
color: #73817D;
|
374
|
+
}
|
375
|
+
pre.cobalt .Variable {
|
376
|
+
color: #CCCCCC;
|
377
|
+
}
|
378
|
+
pre.cobalt .Comment {
|
379
|
+
color: #0088FF;
|
380
|
+
font-style: italic;
|
381
|
+
}
|
382
|
+
pre.cobalt .Entity {
|
383
|
+
color: #FFDD00;
|
384
|
+
}
|
385
|
+
pre.dawn .MetaSeparator {
|
386
|
+
font-weight: bold;
|
387
|
+
background-color: #DCDCDC;
|
388
|
+
color: #19356D;
|
389
|
+
}
|
390
|
+
pre.dawn .SupportVariable {
|
391
|
+
color: #234A97;
|
392
|
+
}
|
393
|
+
pre.dawn .Constant {
|
394
|
+
font-weight: bold;
|
395
|
+
color: #811F24;
|
396
|
+
}
|
397
|
+
pre.dawn .EmbeddedSource {
|
398
|
+
background-color: #829AC2;
|
399
|
+
}
|
400
|
+
pre.dawn .StringRegexpConstantCharacterEscape {
|
401
|
+
font-weight: bold;
|
402
|
+
color: #811F24;
|
403
|
+
}
|
404
|
+
pre.dawn .Support {
|
405
|
+
color: #691C97;
|
406
|
+
}
|
407
|
+
pre.dawn .MarkupList {
|
408
|
+
color: #693A17;
|
409
|
+
}
|
410
|
+
pre.dawn .Storage {
|
411
|
+
color: #A71D5D;
|
412
|
+
font-style: italic;
|
413
|
+
}
|
414
|
+
pre.dawn .line-numbers {
|
415
|
+
background-color: #7496CF;
|
416
|
+
color: #000000;
|
417
|
+
}
|
418
|
+
pre.dawn .StringConstant {
|
419
|
+
font-weight: bold;
|
420
|
+
color: #696969;
|
421
|
+
}
|
422
|
+
pre.dawn .MarkupUnderline {
|
423
|
+
text-decoration: underline;
|
424
|
+
color: #080808;
|
425
|
+
}
|
426
|
+
pre.dawn .MarkupHeading {
|
427
|
+
font-weight: bold;
|
428
|
+
color: #19356D;
|
429
|
+
}
|
430
|
+
pre.dawn .SupportConstant {
|
431
|
+
color: #B4371F;
|
432
|
+
}
|
433
|
+
pre.dawn .MarkupQuote {
|
434
|
+
background-color: #C5C5C5;
|
435
|
+
color: #0B6125;
|
436
|
+
font-style: italic;
|
437
|
+
}
|
438
|
+
pre.dawn .StringRegexpSpecial {
|
439
|
+
font-weight: bold;
|
440
|
+
color: #CF5628;
|
441
|
+
}
|
442
|
+
pre.dawn .InvalidIllegal {
|
443
|
+
background-color: #B52A1D;
|
444
|
+
color: #F8F8F8;
|
445
|
+
font-style: italic;
|
446
|
+
}
|
447
|
+
pre.dawn .MarkupDeleted {
|
448
|
+
color: #B52A1D;
|
449
|
+
}
|
450
|
+
pre.dawn .MarkupRaw {
|
451
|
+
background-color: #C5C5C5;
|
452
|
+
color: #234A97;
|
453
|
+
}
|
454
|
+
pre.dawn .SupportFunction {
|
455
|
+
color: #693A17;
|
456
|
+
}
|
457
|
+
pre.dawn .PunctuationSeparator {
|
458
|
+
color: #794938;
|
459
|
+
}
|
460
|
+
pre.dawn .StringRegexp {
|
461
|
+
color: #CF5628;
|
462
|
+
}
|
463
|
+
pre.dawn .StringEmbeddedSource {
|
464
|
+
background-color: #829AC2;
|
465
|
+
color: #080808;
|
466
|
+
}
|
467
|
+
pre.dawn .MarkupLink {
|
468
|
+
color: #234A97;
|
469
|
+
font-style: italic;
|
470
|
+
}
|
471
|
+
pre.dawn .MarkupBold {
|
472
|
+
font-weight: bold;
|
473
|
+
color: #080808;
|
474
|
+
}
|
475
|
+
pre.dawn .StringVariable {
|
476
|
+
color: #234A97;
|
477
|
+
}
|
478
|
+
pre.dawn .String {
|
479
|
+
color: #0B6125;
|
480
|
+
}
|
481
|
+
pre.dawn .Keyword {
|
482
|
+
color: #794938;
|
483
|
+
}
|
484
|
+
pre.dawn {
|
485
|
+
background-color: #F5F5F5;
|
486
|
+
color: #080808;
|
487
|
+
}
|
488
|
+
pre.dawn .MarkupItalic {
|
489
|
+
color: #080808;
|
490
|
+
font-style: italic;
|
491
|
+
}
|
492
|
+
pre.dawn .InvalidDeprecated {
|
493
|
+
font-weight: bold;
|
494
|
+
color: #B52A1D;
|
495
|
+
}
|
496
|
+
pre.dawn .Variable {
|
497
|
+
color: #234A97;
|
498
|
+
}
|
499
|
+
pre.dawn .Entity {
|
500
|
+
color: #BF4F24;
|
501
|
+
}
|
502
|
+
pre.dawn .Comment {
|
503
|
+
color: #5A525F;
|
504
|
+
font-style: italic;
|
505
|
+
}
|
506
|
+
pre.espresso_libre .EmbeddedSource {
|
507
|
+
background-color: #CE9065;
|
508
|
+
}
|
509
|
+
pre.espresso_libre .LibraryObject {
|
510
|
+
font-weight: bold;
|
511
|
+
color: #6D79DE;
|
512
|
+
}
|
513
|
+
pre.espresso_libre .Section {
|
514
|
+
font-style: italic;
|
515
|
+
}
|
516
|
+
pre.espresso_libre .FunctionArgumentAndResultTypes {
|
517
|
+
color: #8B8E9C;
|
518
|
+
}
|
519
|
+
pre.espresso_libre .TypeName {
|
520
|
+
text-decoration: underline;
|
521
|
+
}
|
522
|
+
pre.espresso_libre .Number {
|
523
|
+
color: #44AA43;
|
524
|
+
}
|
525
|
+
pre.espresso_libre {
|
526
|
+
background-color: #2A211C;
|
527
|
+
color: #BDAE9D;
|
528
|
+
}
|
529
|
+
pre.espresso_libre .MarkupTagAttribute {
|
530
|
+
font-style: italic;
|
531
|
+
}
|
532
|
+
pre.espresso_libre .LibraryVariable {
|
533
|
+
font-weight: bold;
|
534
|
+
color: #2F5FE0;
|
535
|
+
}
|
536
|
+
pre.espresso_libre .line-numbers {
|
537
|
+
background-color: #C3DCFF;
|
538
|
+
color: #000000;
|
539
|
+
}
|
540
|
+
pre.espresso_libre .FunctionParameter {
|
541
|
+
font-style: italic;
|
542
|
+
}
|
543
|
+
pre.espresso_libre .MarkupTag {
|
544
|
+
color: #43A8ED;
|
545
|
+
}
|
546
|
+
pre.espresso_libre .JsOperator {
|
547
|
+
color: #687687;
|
548
|
+
}
|
549
|
+
pre.espresso_libre .InheritedClassName {
|
550
|
+
font-style: italic;
|
551
|
+
}
|
552
|
+
pre.espresso_libre .StringInterpolation {
|
553
|
+
color: #2FE420;
|
554
|
+
}
|
555
|
+
pre.espresso_libre .MarkupNameOfTag {
|
556
|
+
font-weight: bold;
|
557
|
+
}
|
558
|
+
pre.espresso_libre .InvalidTrailingWhitespace {
|
559
|
+
background-color: #FFD0D0;
|
560
|
+
}
|
561
|
+
pre.espresso_libre .LibraryConstant {
|
562
|
+
font-weight: bold;
|
563
|
+
color: #00AF0E;
|
564
|
+
}
|
565
|
+
pre.espresso_libre .MarkupXmlDeclaration {
|
566
|
+
color: #8F7E65;
|
567
|
+
}
|
568
|
+
pre.espresso_libre .PreprocessorDirective {
|
569
|
+
font-weight: bold;
|
570
|
+
color: #9AFF87;
|
571
|
+
}
|
572
|
+
pre.espresso_libre .BuiltInConstant {
|
573
|
+
font-weight: bold;
|
574
|
+
color: #585CF6;
|
575
|
+
}
|
576
|
+
pre.espresso_libre .MarkupDtd {
|
577
|
+
font-style: italic;
|
578
|
+
}
|
579
|
+
pre.espresso_libre .Invalid {
|
580
|
+
background-color: #990000;
|
581
|
+
color: #FFFFFF;
|
582
|
+
}
|
583
|
+
pre.espresso_libre .LibraryFunction {
|
584
|
+
font-weight: bold;
|
585
|
+
color: #7290D9;
|
586
|
+
}
|
587
|
+
pre.espresso_libre .String {
|
588
|
+
color: #049B0A;
|
589
|
+
}
|
590
|
+
pre.espresso_libre .UserDefinedConstant {
|
591
|
+
font-weight: bold;
|
592
|
+
color: #C5656B;
|
593
|
+
}
|
594
|
+
pre.espresso_libre .Keyword {
|
595
|
+
font-weight: bold;
|
596
|
+
color: #43A8ED;
|
597
|
+
}
|
598
|
+
pre.espresso_libre .MarkupDoctype {
|
599
|
+
color: #888888;
|
600
|
+
}
|
601
|
+
pre.espresso_libre .FunctionName {
|
602
|
+
font-weight: bold;
|
603
|
+
color: #FF9358;
|
604
|
+
}
|
605
|
+
pre.espresso_libre .PreprocessorLine {
|
606
|
+
color: #1A921C;
|
607
|
+
}
|
608
|
+
pre.espresso_libre .Variable {
|
609
|
+
color: #318495;
|
610
|
+
}
|
611
|
+
pre.espresso_libre .Comment {
|
612
|
+
color: #0066FF;
|
613
|
+
font-style: italic;
|
614
|
+
}
|
615
|
+
pre.sunburst .DiffInserted {
|
616
|
+
background-color: #253B22;
|
617
|
+
color: #F8F8F8;
|
618
|
+
}
|
619
|
+
pre.sunburst .DiffHeader {
|
620
|
+
background-color: #0E2231;
|
621
|
+
color: #F8F8F8;
|
622
|
+
font-style: italic;
|
623
|
+
}
|
624
|
+
pre.sunburst .CssPropertyValue {
|
625
|
+
color: #F9EE98;
|
626
|
+
}
|
627
|
+
pre.sunburst .CCCPreprocessorDirective {
|
628
|
+
color: #AFC4DB;
|
629
|
+
}
|
630
|
+
pre.sunburst .Constant {
|
631
|
+
color: #3387CC;
|
632
|
+
}
|
633
|
+
pre.sunburst .DiffChanged {
|
634
|
+
background-color: #4A410D;
|
635
|
+
color: #F8F8F8;
|
636
|
+
}
|
637
|
+
pre.sunburst .Support {
|
638
|
+
color: #9B859D;
|
639
|
+
}
|
640
|
+
pre.sunburst .MarkupList {
|
641
|
+
color: #E1D4B9;
|
642
|
+
}
|
643
|
+
pre.sunburst .CssConstructorArgument {
|
644
|
+
color: #8F9D6A;
|
645
|
+
}
|
646
|
+
pre.sunburst .Storage {
|
647
|
+
color: #99CF50;
|
648
|
+
}
|
649
|
+
pre.sunburst .line-numbers {
|
650
|
+
background-color: #DDF0FF;
|
651
|
+
color: #000000;
|
652
|
+
}
|
653
|
+
pre.sunburst .CssClass {
|
654
|
+
color: #9B703F;
|
655
|
+
}
|
656
|
+
pre.sunburst .StringConstant {
|
657
|
+
color: #DDF2A4;
|
658
|
+
}
|
659
|
+
pre.sunburst .MarkupSeparator {
|
660
|
+
background-color: #242424;
|
661
|
+
color: #60A633;
|
662
|
+
}
|
663
|
+
pre.sunburst .MarkupUnderline {
|
664
|
+
text-decoration: underline;
|
665
|
+
color: #E18964;
|
666
|
+
}
|
667
|
+
pre.sunburst .CssAtRule {
|
668
|
+
color: #8693A5;
|
669
|
+
}
|
670
|
+
pre.sunburst .MetaTagInline {
|
671
|
+
color: #E0C589;
|
672
|
+
}
|
673
|
+
pre.sunburst .JEntityNameType {
|
674
|
+
text-decoration: underline;
|
675
|
+
}
|
676
|
+
pre.sunburst .LogEntryError {
|
677
|
+
background-color: #751012;
|
678
|
+
}
|
679
|
+
pre.sunburst .MarkupHeading {
|
680
|
+
background-color: #632D04;
|
681
|
+
color: #FEDCC5;
|
682
|
+
}
|
683
|
+
pre.sunburst .CssTagName {
|
684
|
+
color: #CDA869;
|
685
|
+
}
|
686
|
+
pre.sunburst .SupportConstant {
|
687
|
+
color: #CF6A4C;
|
688
|
+
}
|
689
|
+
pre.sunburst .MarkupQuote {
|
690
|
+
background-color: #ECD091;
|
691
|
+
color: #E1D4B9;
|
692
|
+
font-style: italic;
|
693
|
+
}
|
694
|
+
pre.sunburst .DiffDeleted {
|
695
|
+
background-color: #420E09;
|
696
|
+
color: #F8F8F8;
|
697
|
+
}
|
698
|
+
pre.sunburst .CCCPreprocessorLine {
|
699
|
+
color: #8996A8;
|
700
|
+
}
|
701
|
+
pre.sunburst .StringRegexpSpecial {
|
702
|
+
color: #CF7D34;
|
703
|
+
}
|
704
|
+
pre.sunburst .EmbeddedSourceBright {
|
705
|
+
background-color: #ABADB4;
|
706
|
+
}
|
707
|
+
pre.sunburst .InvalidIllegal {
|
708
|
+
background-color: #150B15;
|
709
|
+
color: #FD5FF1;
|
710
|
+
}
|
711
|
+
pre.sunburst .MarkupRaw {
|
712
|
+
background-color: #ABADB4;
|
713
|
+
color: #578BB3;
|
714
|
+
}
|
715
|
+
pre.sunburst .SupportFunction {
|
716
|
+
color: #DAD085;
|
717
|
+
}
|
718
|
+
pre.sunburst .CssAdditionalConstants {
|
719
|
+
color: #DD7B3B;
|
720
|
+
}
|
721
|
+
pre.sunburst .MetaTagAll {
|
722
|
+
color: #89BDFF;
|
723
|
+
}
|
724
|
+
pre.sunburst .StringRegexp {
|
725
|
+
color: #E9C062;
|
726
|
+
}
|
727
|
+
pre.sunburst .StringEmbeddedSource {
|
728
|
+
color: #DAEFA3;
|
729
|
+
}
|
730
|
+
pre.sunburst .EntityInheritedClass {
|
731
|
+
color: #9B5C2E;
|
732
|
+
font-style: italic;
|
733
|
+
}
|
734
|
+
pre.sunburst .MarkupComment {
|
735
|
+
color: #F67B37;
|
736
|
+
font-style: italic;
|
737
|
+
}
|
738
|
+
pre.sunburst .MarkupBold {
|
739
|
+
font-weight: bold;
|
740
|
+
color: #E9C062;
|
741
|
+
}
|
742
|
+
pre.sunburst .CssId {
|
743
|
+
color: #8B98AB;
|
744
|
+
}
|
745
|
+
pre.sunburst .CssPseudoClass {
|
746
|
+
color: #8F9D6A;
|
747
|
+
}
|
748
|
+
pre.sunburst .JCast {
|
749
|
+
color: #676767;
|
750
|
+
font-style: italic;
|
751
|
+
}
|
752
|
+
pre.sunburst .StringVariable {
|
753
|
+
color: #8A9A95;
|
754
|
+
}
|
755
|
+
pre.sunburst .String {
|
756
|
+
color: #65B042;
|
757
|
+
}
|
758
|
+
pre.sunburst .Keyword {
|
759
|
+
color: #E28964;
|
760
|
+
}
|
761
|
+
pre.sunburst {
|
762
|
+
background-color: #000000;
|
763
|
+
color: #F8F8F8;
|
764
|
+
}
|
765
|
+
pre.sunburst .LogEntry {
|
766
|
+
background-color: #C7C7C7;
|
767
|
+
}
|
768
|
+
pre.sunburst .MarkupItalic {
|
769
|
+
color: #E9C062;
|
770
|
+
font-style: italic;
|
771
|
+
}
|
772
|
+
pre.sunburst .CssPropertyName {
|
773
|
+
color: #C5AF75;
|
774
|
+
}
|
775
|
+
pre.sunburst .Namespaces {
|
776
|
+
color: #E18964;
|
777
|
+
}
|
778
|
+
pre.sunburst .DoctypeXmlProcessing {
|
779
|
+
color: #494949;
|
780
|
+
}
|
781
|
+
pre.sunburst .InvalidDeprecated {
|
782
|
+
color: #FD5FF1;
|
783
|
+
font-style: italic;
|
784
|
+
}
|
785
|
+
pre.sunburst .Variable {
|
786
|
+
color: #3E87E3;
|
787
|
+
}
|
788
|
+
pre.sunburst .Entity {
|
789
|
+
color: #89BDFF;
|
790
|
+
}
|
791
|
+
pre.sunburst .Comment {
|
792
|
+
color: #AEAEAE;
|
793
|
+
font-style: italic;
|
794
|
+
}
|
795
|
+
pre.twilight .DiffInserted {
|
796
|
+
background-color: #253B22;
|
797
|
+
color: #F8F8F8;
|
798
|
+
}
|
799
|
+
pre.twilight .DiffHeader {
|
800
|
+
background-color: #0E2231;
|
801
|
+
color: #F8F8F8;
|
802
|
+
font-style: italic;
|
803
|
+
}
|
804
|
+
pre.twilight .CssPropertyValue {
|
805
|
+
color: #F9EE98;
|
806
|
+
}
|
807
|
+
pre.twilight .CCCPreprocessorDirective {
|
808
|
+
color: #AFC4DB;
|
809
|
+
}
|
810
|
+
pre.twilight .Constant {
|
811
|
+
color: #CF6A4C;
|
812
|
+
}
|
813
|
+
pre.twilight .DiffChanged {
|
814
|
+
background-color: #4A410D;
|
815
|
+
color: #F8F8F8;
|
816
|
+
}
|
817
|
+
pre.twilight .EmbeddedSource {
|
818
|
+
background-color: #A3A6AD;
|
819
|
+
}
|
820
|
+
pre.twilight .Support {
|
821
|
+
color: #9B859D;
|
822
|
+
}
|
823
|
+
pre.twilight .MarkupList {
|
824
|
+
color: #F9EE98;
|
825
|
+
}
|
826
|
+
pre.twilight .CssConstructorArgument {
|
827
|
+
color: #8F9D6A;
|
828
|
+
}
|
829
|
+
pre.twilight .Storage {
|
830
|
+
color: #F9EE98;
|
831
|
+
}
|
832
|
+
pre.twilight .line-numbers {
|
833
|
+
background-color: #DDF0FF;
|
834
|
+
color: #000000;
|
835
|
+
}
|
836
|
+
pre.twilight .CssClass {
|
837
|
+
color: #9B703F;
|
838
|
+
}
|
839
|
+
pre.twilight .StringConstant {
|
840
|
+
color: #DDF2A4;
|
841
|
+
}
|
842
|
+
pre.twilight .CssAtRule {
|
843
|
+
color: #8693A5;
|
844
|
+
}
|
845
|
+
pre.twilight .MetaTagInline {
|
846
|
+
color: #E0C589;
|
847
|
+
}
|
848
|
+
pre.twilight .MarkupHeading {
|
849
|
+
color: #CF6A4C;
|
850
|
+
}
|
851
|
+
pre.twilight .CssTagName {
|
852
|
+
color: #CDA869;
|
853
|
+
}
|
854
|
+
pre.twilight .SupportConstant {
|
855
|
+
color: #CF6A4C;
|
856
|
+
}
|
857
|
+
pre.twilight .DiffDeleted {
|
858
|
+
background-color: #420E09;
|
859
|
+
color: #F8F8F8;
|
860
|
+
}
|
861
|
+
pre.twilight .CCCPreprocessorLine {
|
862
|
+
color: #8996A8;
|
863
|
+
}
|
864
|
+
pre.twilight .StringRegexpSpecial {
|
865
|
+
color: #CF7D34;
|
866
|
+
}
|
867
|
+
pre.twilight .EmbeddedSourceBright {
|
868
|
+
background-color: #9C9EA4;
|
869
|
+
}
|
870
|
+
pre.twilight .InvalidIllegal {
|
871
|
+
background-color: #241A24;
|
872
|
+
color: #F8F8F8;
|
873
|
+
}
|
874
|
+
pre.twilight .SupportFunction {
|
875
|
+
color: #DAD085;
|
876
|
+
}
|
877
|
+
pre.twilight .CssAdditionalConstants {
|
878
|
+
color: #CA7840;
|
879
|
+
}
|
880
|
+
pre.twilight .MetaTagAll {
|
881
|
+
color: #AC885B;
|
882
|
+
}
|
883
|
+
pre.twilight .StringRegexp {
|
884
|
+
color: #E9C062;
|
885
|
+
}
|
886
|
+
pre.twilight .StringEmbeddedSource {
|
887
|
+
color: #DAEFA3;
|
888
|
+
}
|
889
|
+
pre.twilight .EntityInheritedClass {
|
890
|
+
color: #9B5C2E;
|
891
|
+
font-style: italic;
|
892
|
+
}
|
893
|
+
pre.twilight .CssId {
|
894
|
+
color: #8B98AB;
|
895
|
+
}
|
896
|
+
pre.twilight .CssPseudoClass {
|
897
|
+
color: #8F9D6A;
|
898
|
+
}
|
899
|
+
pre.twilight .StringVariable {
|
900
|
+
color: #8A9A95;
|
901
|
+
}
|
902
|
+
pre.twilight .String {
|
903
|
+
color: #8F9D6A;
|
904
|
+
}
|
905
|
+
pre.twilight .Keyword {
|
906
|
+
color: #CDA869;
|
907
|
+
}
|
908
|
+
pre.twilight {
|
909
|
+
background-color: #141414;
|
910
|
+
color: #F8F8F8;
|
911
|
+
}
|
912
|
+
pre.twilight .CssPropertyName {
|
913
|
+
color: #C5AF75;
|
914
|
+
}
|
915
|
+
pre.twilight .DoctypeXmlProcessing {
|
916
|
+
color: #494949;
|
917
|
+
}
|
918
|
+
pre.twilight .InvalidDeprecated {
|
919
|
+
color: #D2A8A1;
|
920
|
+
font-style: italic;
|
921
|
+
}
|
922
|
+
pre.twilight .Variable {
|
923
|
+
color: #7587A6;
|
924
|
+
}
|
925
|
+
pre.twilight .Entity {
|
926
|
+
color: #9B703F;
|
927
|
+
}
|
928
|
+
pre.twilight .Comment {
|
929
|
+
color: #5F5A60;
|
930
|
+
font-style: italic;
|
931
|
+
}
|
932
|
+
pre.zenburnesque .InheritedClass {
|
933
|
+
}
|
934
|
+
pre.zenburnesque .TypeName {
|
935
|
+
color: #F09040;
|
936
|
+
}
|
937
|
+
pre.zenburnesque .FloatingPointPrefixOperators {
|
938
|
+
text-decoration: underline;
|
939
|
+
}
|
940
|
+
pre.zenburnesque .Number {
|
941
|
+
color: #22C0FF;
|
942
|
+
}
|
943
|
+
pre.zenburnesque .Directive {
|
944
|
+
font-weight: bold;
|
945
|
+
}
|
946
|
+
pre.zenburnesque .LibraryVariable {
|
947
|
+
}
|
948
|
+
pre.zenburnesque .Storage {
|
949
|
+
}
|
950
|
+
pre.zenburnesque .line-numbers {
|
951
|
+
background-color: #A0A0C0;
|
952
|
+
color: #000000;
|
953
|
+
}
|
954
|
+
pre.zenburnesque .LineNumberDirectives {
|
955
|
+
text-decoration: underline;
|
956
|
+
}
|
957
|
+
pre.zenburnesque .TagName {
|
958
|
+
}
|
959
|
+
pre.zenburnesque .StorageTypes {
|
960
|
+
color: #6080FF;
|
961
|
+
}
|
962
|
+
pre.zenburnesque .Operators {
|
963
|
+
color: #FFFFA0;
|
964
|
+
}
|
965
|
+
pre.zenburnesque {
|
966
|
+
background-color: #404040;
|
967
|
+
color: #DEDEDE;
|
968
|
+
}
|
969
|
+
pre.zenburnesque .LibraryConstant {
|
970
|
+
}
|
971
|
+
pre.zenburnesque .VariantTypes {
|
972
|
+
color: #4080A0;
|
973
|
+
}
|
974
|
+
pre.zenburnesque .Characters {
|
975
|
+
color: #FF8080;
|
976
|
+
}
|
977
|
+
pre.zenburnesque .FunctionArgument {
|
978
|
+
}
|
979
|
+
pre.zenburnesque .LanguageKeyword {
|
980
|
+
color: #FFFFA0;
|
981
|
+
}
|
982
|
+
pre.zenburnesque .BuiltInConstant {
|
983
|
+
}
|
984
|
+
pre.zenburnesque .FloatingPointNumbers {
|
985
|
+
text-decoration: underline;
|
986
|
+
}
|
987
|
+
pre.zenburnesque .ClassTypeName {
|
988
|
+
color: #F4A020;
|
989
|
+
}
|
990
|
+
pre.zenburnesque .TypeName1 {
|
991
|
+
color: #FFE000;
|
992
|
+
}
|
993
|
+
pre.zenburnesque .ModuleKeyword {
|
994
|
+
font-weight: bold;
|
995
|
+
color: #FF8000;
|
996
|
+
}
|
997
|
+
pre.zenburnesque .Invalid {
|
998
|
+
}
|
999
|
+
pre.zenburnesque .LibraryClassType {
|
1000
|
+
}
|
1001
|
+
pre.zenburnesque .LibraryFunction {
|
1002
|
+
}
|
1003
|
+
pre.zenburnesque .TagAttribute {
|
1004
|
+
}
|
1005
|
+
pre.zenburnesque .FloatingPointInfixOperators {
|
1006
|
+
text-decoration: underline;
|
1007
|
+
}
|
1008
|
+
pre.zenburnesque .UserDefinedConstant {
|
1009
|
+
}
|
1010
|
+
pre.zenburnesque .String {
|
1011
|
+
color: #FF2020;
|
1012
|
+
}
|
1013
|
+
pre.zenburnesque .FunctionName {
|
1014
|
+
font-weight: bold;
|
1015
|
+
color: #FFCC66;
|
1016
|
+
}
|
1017
|
+
pre.zenburnesque .Variable {
|
1018
|
+
}
|
1019
|
+
pre.zenburnesque .Comment {
|
1020
|
+
color: #709070;
|
1021
|
+
font-style: italic;
|
1022
|
+
}
|