- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
7 lines
247 B
TypeScript
7 lines
247 B
TypeScript
import type { MarkdownLine } from './types.js';
|
|
/**
|
|
* @param markdown - markdown to split into lines
|
|
*/
|
|
export declare function markdownToLines(markdown: string): MarkdownLine[];
|
|
export declare function markdownToHTML(markdown: string): string;
|