function convertFile(src, dst) {
  fs.readFile(src, { encoding: 'utf8' }, (readError, grammar) => {
    if (readError) {
      throw readError
    }