Can I configure the the editor to output - instead of * for list items? #1984
-
I like using - instead of * for list items and dividers, is there a way to configure this...? |
Beta Was this translation helpful? Give feedback.
Answered by
Saul-Mirone
Jun 24, 2025
Replies: 1 comment
-
You can configure import { remarkStringifyOptionsCtx } from "@milkdown/kit/core";
editor.config((ctx) => {
ctx.set(remarkStringifyOptionsCtx, {
// some options, for example:
bullet: "*",
fences: true,
incrementListMarker: false,
});
}); |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
atsjo
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can configure
remark-stringify
options