editor-js / editor-js/paragraph
Text not autoreturning and moving outside of text editor.
- Dominant language
- TypeScript
- Stars
- 59
- Forks
- 129
- PR merge metrics
- No merged PRs in 30d
Description
```html
Submit
const editor = new EditorJS({
tools: {
header: Header,
raw: RawTool,
image: SimpleImage,
checklist: {
class: Checklist,
inlineToolbar: true,
},
list: {
class: NestedList,
inlineToolbar: true,
},
embed: Embed,
quote: Quote,
table: Table,
Marker: {
class: Marker,
shortcut: 'CMD+SHIFT+M',
},
delimiter: Delimiter,
underline: Underline,
personality: {
class: Personality,
config: {
endpoint: 'http://localhost:8008/uploadFile' // Your backend file uploader endpoint
}
},
paragraph: {
class: Paragraph,
inlineToolbar: true,
},
textVariant: TextVariantTune
},
tunes: ['textVariant'],
placeholder: 'Let\'s write an AWESOME post!',
minHeight: '200px'
}, 'editorjs');
```
When I hold 'm', the text goes off the editor, not returning to a new line as it should in my mind. Is this a bug or am I doing something wrong. I didn't see anything in the guide on the website about auto carriage. Note: I have tailwind ui installed as a cdn.
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.