Redactor can work as an Inline Editor, allowing you to edit content directly on the website in real time by enabling the 'nostyle' and 'nocontainer' settings.
Lorem ipsum dolor sit amet consectetur adipisicing elit. Odio incidunt nam itaque sed eius modi error totam sit illum. Voluptas doloribus asperiores quaerat aperiam. Quidem harum omnis beatae ipsum soluta!
Some text here
Some text here
Some text here
<!-- element -->
<div id="entry">
<h1>...</h1>
<p>...</p>
<div>
...
</div>
</div>
<!-- call -->
<script>
let app = Redactor('#entry', {
plugins: ['emoji'],
nostyle: true,
nocontainer: true,
context: {
hide: ['format']
}
});
</script>