$markdown
Updated on Aug 19, 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");
// html = "<h1>Hello World</h1>"
                    🔽 Show more