mirror of
https://github.com/sindresorhus/github-markdown-css.git
synced 2024-03-22 13:10:53 +08:00
132 lines
2.7 KiB
JavaScript
132 lines
2.7 KiB
JavaScript
'use strict';
|
|
var got = require('got');
|
|
var cheerio = require('cheerio');
|
|
var uncss = require('uncss');
|
|
|
|
function getCss(cb) {
|
|
got('https://github.com', function (err, data) {
|
|
if (err) {
|
|
cb(err);
|
|
return;
|
|
}
|
|
|
|
var ret = [];
|
|
var $ = cheerio.load(data);
|
|
|
|
$('link[href*="assets/github"]').each(function (i, el) {
|
|
ret.push(el.attribs.href);
|
|
});
|
|
|
|
if (ret.length === 0) {
|
|
cb(new Error('Could not find GitHub stylesheets'));
|
|
return;
|
|
}
|
|
|
|
cb(null, ret);
|
|
});
|
|
}
|
|
|
|
function getRenderedFixture(cb) {
|
|
var url = 'https://github.com/sindresorhus/github-markdown-css/blob/gh-pages/fixture.md';
|
|
|
|
got(url, function (err, data) {
|
|
if (err) {
|
|
cb(err);
|
|
return;
|
|
}
|
|
|
|
var $ = cheerio.load(data);
|
|
var html = $('.markdown-body').parent().html();
|
|
|
|
cb(null, html);
|
|
});
|
|
}
|
|
|
|
function cleanupCss(str) {
|
|
var css = require('css');
|
|
var style = css.parse(str);
|
|
var mdBodyProps = [];
|
|
|
|
style.stylesheet.rules = style.stylesheet.rules.filter(function (el) {
|
|
if (el.type === 'keyframes' || el.type === 'comment' || el.type === 'font-face') {
|
|
return false;
|
|
}
|
|
|
|
if (el.type ==='rule') {
|
|
if (/::-webkit-validation|:-moz-placeholder|^\.integrations-slide-content|^\.prose-diff|@font-face|^\.octicon|^button::|^\.markdown-body .+(:hover|\.octicon)|^article$/.test(el.selectors[0])) {
|
|
return false;
|
|
}
|
|
|
|
if (el.selectors.length === 1 && /^(?:html|body)$/.test(el.selectors[0])) {
|
|
el.declarations = el.declarations.filter(function (declaration) {
|
|
if (!/^font|^(?:line-height|color)$|text-size-adjust$/.test(declaration.property)) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
});
|
|
}
|
|
|
|
el.selectors = el.selectors.map(function (selector) {
|
|
if (/^(?:body|html)$/.test(selector)) {
|
|
selector = '.markdown-body';
|
|
}
|
|
|
|
if (!/\.markdown-body/.test(selector)) {
|
|
selector = '.markdown-body ' + selector;
|
|
}
|
|
|
|
return selector;
|
|
});
|
|
|
|
// collect `.markdown-body` rules
|
|
if (el.selectors.length === 1 && el.selectors[0] === '.markdown-body') {
|
|
[].push.apply(mdBodyProps, el.declarations);
|
|
return false;
|
|
}
|
|
}
|
|
|
|
if (el.declarations.length === 0) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
});
|
|
|
|
// merge `.markdown-body` rules
|
|
style.stylesheet.rules.unshift({
|
|
type: 'rule',
|
|
selectors: ['.markdown-body'],
|
|
declarations: mdBodyProps
|
|
});
|
|
|
|
return css.stringify(style);
|
|
}
|
|
|
|
module.exports = function (cb) {
|
|
getRenderedFixture(function (err, html) {
|
|
if (err) {
|
|
cb(err);
|
|
return;
|
|
}
|
|
|
|
getCss(function (err, stylesheets) {
|
|
if (err) {
|
|
cb(err);
|
|
return;
|
|
}
|
|
|
|
uncss(html, {
|
|
stylesheets: stylesheets,
|
|
ignore: [/^\.highlight/]
|
|
}, function (err, css) {
|
|
if (err) {
|
|
throw err;
|
|
}
|
|
|
|
cb(null, cleanupCss(css));
|
|
});
|
|
});
|
|
});
|
|
};
|