We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e304f73 commit fb37695Copy full SHA for fb37695
2 files changed
scripts/md2html/gist.css
@@ -25,6 +25,10 @@
25
color: #df5000;
26
}
27
28
+.hljs-number {
29
+ color: #008080;
30
+}
31
+
32
.hljs-keyword,
33
.hljs-selector-tag,
34
.hljs-type {
scripts/md2html/md2html.js
@@ -114,6 +114,7 @@ function preface(title,options) {
114
preface += 'table tr { background-color: #fff; border-top: 1px solid #c6cbd1; }';
115
preface += 'table tr:nth-child(2n) { background-color: #f6f8fa; }';
116
preface += 'pre { background-color: #f6f8fa !important; }';
117
+ preface += 'code { color: #c83500 } th code { color: inherit }';
118
preface += fs.readFileSync(path.resolve(__dirname,'gist.css'),'utf8').split('\n').join(' ');
119
preface += '</style>';
120
preface += `<h1 id="title">${title.split('|')[0]}</h1>`;
0 commit comments