Skip to content

KAZOO Support Channels

This documentation is curated by 2600Hz as part of the KAZOO open source project. Join our community forums here for peer support. Only features in the docs.2600hz.com/supported space are included as part of our 2600Hz Support Services plan.

monster.ui.markdownToHtml()#

The monster.ui.markdownToHtml renders markdown content as HTML.

Syntax#

monster.ui.markdownToHtml(content);

Parameters#

Key Description Type Default Required
content Markdown content to be rendered as HTML String true

Description#

This helper allows you to render markdown content as HTML

Example#

var markdownContent = '**Hello world**',
    description = monster.ui.markdownToHtml(markdownContent);

template.find('.description').html(description);