This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/purgecss.config.js
2020-02-06 00:52:26 +00:00

10 lines
250 B
JavaScript

let glob = require('glob-all')
module.exports = {
defaultExtractor: content => content.match(/[\w-/:]+(?<!:)/g) || [],
paths: () => glob.sync([
'source/**/*.{md,twig}'
]),
whitelistPatterns: [/(code|kbd|pre|samp)/, /hljs/, /language/]
}