Split micromark.cjs into separate -parse and -helpers files.

This commit is contained in:
David Anson 2024-09-28 16:26:38 -07:00
parent 5701d0bf52
commit 33631a5984
47 changed files with 353 additions and 1236 deletions

View file

@ -1,5 +1,5 @@
import { readFile } from "node:fs/promises";
import { parse } from "../helpers/micromark.cjs";
import { parse } from "../helpers/micromark-parse.cjs";
import library from "../lib/markdownlint.js";
const markdownlint = library.promises.markdownlint;