JSFiddle - React, Tailwind, and code Playground

by samc

HTML

<script src="http://www.sceditor.com/minified/jquery.sceditor.bbcode.min.js"></script>
<link rel="stylesheet" href="http://www.sceditor.com/minified/themes/default.min.css">
<textarea></textarea>

CSS

textarea {
    width: 100%;
    height: 400px;
}

JavaScript

$(function() {
    $("textarea").sceditor({
		plugins: 'bbcode',
        style: 'http://www.sceditor.com/minified/jquery.sceditor.default.min.css',
        parserOptions: {
            breakBeforeBlock: false,
            breakStartBlock: false,
            breakEndBlock: false,
            breakAfterBlock: false
        }
	});
});