fix-github.js 190 B

123456789
  1. var fs = require('fs')
  2. var github = fs.readFileSync('./themes/github.css', 'utf8')
  3. fs.writeFileSync(
  4. 'themes/github.css',
  5. github.replace(/\.markdown-body :root/g, ':root'),
  6. 'utf8'
  7. )