- Deleted redundant components (`AddActionButton`, `AlertBox`, `AlertStack`, `BackButton`, `CancelButton`, and `CollapsableArea`) and related files. - Removed unused models (`Book`, `BookSerie`, `BookTables`, `Character`, and `Chapter`) to reduce codebase clutter. - Updated project structure and references to reflect these removals.
7 lines
197 B
TypeScript
7 lines
197 B
TypeScript
export function convertToHtml(text: string): string {
|
|
return text
|
|
.split(/\n\s*\n/)
|
|
.map((paragraph: string): string => `<p>${paragraph.trim()}</p>`)
|
|
.join('');
|
|
}
|