Vanha frontend siirretty temp/. Uusi rakenne: - StatusBar.astro, Terminal.astro, Editor.astro, Guide.astro - global.css erillinen - Wasm pääsäikeessä (ei Worker — yksinkertainen, debugattava) - Tab-completion, dropdown, projektikortti, Monaco, GUIDE.md - Ei tokenisointia eikä koodilaboratoriota Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
24 lines
1.1 KiB
TypeScript
24 lines
1.1 KiB
TypeScript
/**
|
|
* Create an extension for `mdast-util-from-markdown` to enable GFM (autolink
|
|
* literals, footnotes, strikethrough, tables, tasklists).
|
|
*
|
|
* @returns {Array<FromMarkdownExtension>}
|
|
* Extension for `mdast-util-from-markdown` to enable GFM (autolink literals,
|
|
* footnotes, strikethrough, tables, tasklists).
|
|
*/
|
|
export function gfmFromMarkdown(): Array<FromMarkdownExtension>;
|
|
/**
|
|
* Create an extension for `mdast-util-to-markdown` to enable GFM (autolink
|
|
* literals, footnotes, strikethrough, tables, tasklists).
|
|
*
|
|
* @param {Options | null | undefined} [options]
|
|
* Configuration (optional).
|
|
* @returns {ToMarkdownExtension}
|
|
* Extension for `mdast-util-to-markdown` to enable GFM (autolink literals,
|
|
* footnotes, strikethrough, tables, tasklists).
|
|
*/
|
|
export function gfmToMarkdown(options?: Options | null | undefined): ToMarkdownExtension;
|
|
import type { Extension as FromMarkdownExtension } from 'mdast-util-from-markdown';
|
|
import type { Options } from 'mdast-util-gfm';
|
|
import type { Options as ToMarkdownExtension } from 'mdast-util-to-markdown';
|
|
//# sourceMappingURL=index.d.ts.map
|