sparksuite / simplemde-markdown-editor

A simple, beautiful, and embeddable JavaScript Markdown editor. Delightful editing for beginners and experts alike. Features built-in autosaving and spell checking.
https://simplemde.com
MIT License
9.79k stars 1.12k forks source link

I am using simplemde editor and convert it into html but the value of simplemde.value() is null #831

Open itsayushyadav opened 2 years ago

itsayushyadav commented 2 years ago

I am using simplemde for markdown editor but when I am converting the value into HTML by simplemde.value() it will return null value.

var simplemde = new SimpleMDE({element: document.getElementById("MyAnswer")}); document.getElementById("answercontent").value = simplemdesimplemde.options.previewRender(simplemde.value());