fix: Add comments

This commit is contained in:
Hwang In Tak 2024-09-25 00:41:08 +09:00
parent 3f1255b39e
commit 30e65b33f6
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ const { inlineRule, blockRule } = generateRegexRules(DELIMITER_LIST);
export default function (options = {}) {
return {
extensions: [
blockKatex(options),
blockKatex(options), // This should be on top to prevent conflict with inline delimiters.
inlineKatex(options),
]
};