Move micromark.cjs helpers from lib to helpers so it can be used by code in both locations.

This commit is contained in:
David Anson 2023-01-20 04:10:18 +00:00
parent 1461ad6272
commit 08b31da0aa
5 changed files with 122 additions and 122 deletions

View file

@ -5,7 +5,7 @@
const path = require("node:path");
const { promisify } = require("node:util");
const markdownit = require("markdown-it");
const micromark = require("./micromark.cjs");
const micromark = require("../helpers/micromark.cjs");
const { deprecatedRuleNames } = require("./constants");
const rules = require("./rules");
const helpers = require("../helpers");