It is ideal for content management systems, blogs, and documentation platforms where users need to write or edit markdown syntax.
1. Install and import the MarkdownEditor via NPM.
# NPM $ npm install markdown-text-editor
import MarkdownEditor from "markdown-text-editor";
2. If you’re using TailwindCSS in your project, add the following configuration to your tailwind.config.js file:
module.exports = {
content: [
'node_modules/markdown-text-editor/**/*.js',
// ...
],
}; For non-Tailwind projects, import the stylesheet directly:
import 'markdown-text-editor/dist/markdown-text-editor.css';
3. You can also download the package and then include these files in your document:
<link rel=”stylesheet” href=”/dist/markdown-text-editor.min.css”>
<script src=”/dist/markdown-text-editor.min.js”></script>
4. Create a textarea element for the markdown editor.
<textarea class="editor"> ... </textarea>
<!-- Include the textarea in a form for server-side processing: --> <form method="POST" action="/submit"> <textarea class="editor" name="content"></textarea> <button type="submit">Save</button> </form>
5. Initialize the editor with the following options:
const myEditor = new MarkdownEditor(document.querySelectorAll(".editor"), {
placeholder: 'Write your markdown...',
toolbar: ['heading', 'bold', 'italic', 'strikethrough', 'ul', 'ol', 'checklist', 'blockquote', 'link', 'image', 'preview'],
}); 6. Get the Markdown output like this:
const output = document.querySelector(".editor").value; v0.2.0 (05/11/2025)
v0.1.5 (03/19/2025)
v0.1.4 (02/24/2025)
02/18/2025
v0.1.3 (02/18/2025)
v0.1.2 (02/17/2025)
The post Simple Markdown Editor with Real-Time Preview and Customizable Toolbar appeared first on CSS Script.
Witch Hat Atelier is a great manga for newcomers to the medium, and the price…
BIG COUNTRY, Texas (KTAB/KRBC) – The Storm Prediction Center has placed nearly the entire Big…
ABILENE, Texas (KTAB/KRBC) - McMurry University has launched Abilene’s only collegiate gymnastics program. The program…
COLEMAN, Texas (KTAB/KRBC) - As the City of Coleman gets ready to celebrate its 150th…
ABILENE, Texas (KTAB/KRBC) - A new pickleball complex proposed in north Abilene has been given…
Editor’s Note: The Abilene Police Department supplied the following arrest and incident reports. All information…
This website uses cookies.