Jacky Zhao
2023-08-06 db6054a8c19703345cfdd6dd4a08f35986c14acc
format, remove markdown from being procesed
2 files modified
7 ■■■■■ changed files
.prettierignore 1 ●●●● patch | view | raw | blame | history
quartz/build.ts 6 ●●●● patch | view | raw | blame | history
.prettierignore
@@ -1,3 +1,4 @@
public
node_modules
.quartz-cache
**/*.md
quartz/build.ts
@@ -4,14 +4,14 @@
    // source map hack to get around query param
    // import cache busting
    if (source.includes(".quartz-cache")) {
      let realSource = fileURLToPath(source.split("?", 2)[0] + '.map')
      let realSource = fileURLToPath(source.split("?", 2)[0] + ".map")
      return {
        map: fs.readFileSync(realSource, 'utf8')
        map: fs.readFileSync(realSource, "utf8"),
      }
    } else {
      return null
    }
  }
  },
})
import path from "path"