mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
5a4f595341
Started basic playground for testing lexical as a new WYSIWYG editor. Moved out tinymce to be under wysiwyg-tinymce instead so lexical is the default, but TinyMce code remains.
19 lines
223 B
JavaScript
19 lines
223 B
JavaScript
export const blockElementTypes = [
|
|
'p',
|
|
'h1',
|
|
'h2',
|
|
'h3',
|
|
'h4',
|
|
'h5',
|
|
'h6',
|
|
'div',
|
|
'blockquote',
|
|
'pre',
|
|
'code-block',
|
|
'details',
|
|
'ul',
|
|
'ol',
|
|
'table',
|
|
'hr',
|
|
];
|