/** Kitten’s Markdown support, based on MarkdownIt and its plugins. This library is used by both the ES Module Loader and main process. ⚠️ Node-native subgraph: this module is loaded natively by Node.js via type stripping. Only use erasable TypeScript syntax here. Copyright ⓒ 2024-present, Aral Balkan, Small Technology Foundation. Released under the AGPL 3.0 license. */ import MarkdownIt from 'markdown-it'; import slugify from '@sindresorhus/slugify'; declare const markdownIt: MarkdownIt; export default markdownIt; export { slugify };