Files
bewell-in-ua/lib/config/editor.ts
2025-03-11 02:54:09 +02:00

61 lines
1.5 KiB
TypeScript

export const BaseEditorConfig = {
readonly: false, // all options from https://xdsoft.net/jodit/docs/,
placeholder: 'Почніть введення...',
spellcheck: true,
language: 'ua',
//toolbarAdaptive: false,
//toolbarButtonSize: 'small',
saveHeightInStorage: true,
saveModeInStorage: true,
//defaultActionOnPaste: 'insert_as_text',
//defaultActionOnPaste: 'insert_only_text',
//disablePlugins: 'ai-assistant,mobile,print,speech-recognize,table,table-keyboard-navigation,powered-by-jodit,iframe',
minHeight: '240',
maxHeight: '640',
maxWidth: '890',
uploader: {
insertImageAsBase64URI: true,
imagesExtensions: ['jpg', 'png', 'jpeg', 'gif', 'svg', 'webp']
}
// cleanHTML: {
// allowTags: {
// p: true,
// h1: true,
// h2: true,
// h3: true,
// h4: true,
// h5: true,
// h6: true,
// div: true,
// strong: true,
// li: true,
// ul: true,
// ol: true,
// i: true,
// blockquote: true,
// code: true,
// img: true,
// cite: true,
// small: true,
// sub: true,
// sup: true
// }
// }
// controls: {
// paragraph: {
// list: {
// h1: 'Heading 1',
// h2: 'Heading 2',
// h3: 'Heading 3',
// h4: 'Heading 4',
// h5: 'Heading 5',
// h6: 'Heading 6',
// blockquote: 'Quote',
// div: 'Div',
// pre: 'Source code'
// }
// }
// },
// buttons: 'bold,italic,underline,strikethrough,eraser,ul,ol,font,fontsize,paragraph,lineHeight,superscript,subscript,classSpan,file,image,video,spellcheck,cut'
}