| 123456789101112131415161718192021 |
- export const setLute = (options: ILuteOptions) => {
- const lute: ILute = Lute.New();
- lute.PutEmojis(options.emojis);
- lute.SetEmojiSite(options.emojiSite);
- lute.SetHeadingAnchor(options.headingAnchor);
- lute.SetInlineMathAllowDigitAfterOpenMarker(options.inlineMathDigit);
- lute.SetAutoSpace(options.autoSpace);
- lute.SetToC(options.toc);
- lute.SetFootnotes(options.footnotes);
- lute.SetChinesePunct(options.chinesePunct);
- lute.SetFixTermTypo(options.fixTermTypo);
- lute.SetVditorCodeBlockPreview(options.codeBlockPreview);
- lute.SetSetext(options.setext);
- lute.SetSanitize(options.sanitize);
- lute.SetChineseParagraphBeginningSpace(options.paragraphBeginningSpace);
- lute.SetRenderListMarker(options.listMarker);
- if (options.lazyLoadImage) {
- lute.SetImageLazyLoading(options.lazyLoadImage);
- }
- return lute;
- };
|