var text = `| Title | image | Description | <br>
| --- | ---| <br>
| Froala | [![Froala logo](https://froala.com/wp-content/uploads/2019/10/froala.svg) ](<https://froala.com> "Froala") | The best editor on the web| <br>
| **Idera** | [![Idera logo](https://www.ideracorp.com/Presentation/IderaInc/Assets/Images/idera-inc-logo.svg) ]( <https://www.ideracorp.com> "Idera") | Do More with Less. |<br>`;
var editor = new FroalaEditor('#editor', {
toolbarButtons: ['markdown']
},
function () {
// Call the method inside the initialized event.
editor.markdown.toggle();
editor.html.insert(text);
//To Convert Syntax directly
editor.events.trigger('blur', [], true);
}
)