$markdown
Updated on Aug 28, 2025 1 minutes to readThe Markdown Plugin provides methods for processing Markdown content.
Methods
| Method | Description |
|---|---|
| toHtml | Converts a Markdown-formatted string into HTML. |
Methods Details
toHtml()
• Type
(value: string) => string
🔽 Show more
• Details
Expects a Markdown-formatted string. Â
Returns the corresponding HTML string.
• Example
const html = E8App.$markdown.toHtml("# Hello World");
console.log(html); // <h1>Hello World</h1>
🔽 Show more