Froala的所有工具栏按钮
All the toolbar buttons of Froala
我想知道Froala (https://www.froala.com/wysiwyg-editor)所有工具栏按钮的名称。我知道以下几个:
"undo"、"redo"、"bold"、"italic"、"underline"、"strikeThrough"、"selectAll"、"paragraphStyle"、"subscript"、"superscript"、"paragraphFormat"、"fontFamily"、"fontSize"、"align"、"formatOL"、"formatUL" , "outdent", "indent", "quote", "color", "emoticons", "insertTable", "createLink", "insertImage", "insertVideo"、"insertFile"、"fullscreen"、"html"、"save"
我至少错过了“插入水平线”按钮。
我终于找到了“插入水平线”按钮。是"insertHR".
在其官方页面上有一个包含 froala 所有可能功能的示例:
https://www.froala.com/wysiwyg-editor/examples/full-featured
toolbarButtons: ['fullscreen', 'bold', 'italic', 'underline', 'strikeThrough', 'subscript', 'superscript', 'fontFamily', 'fontSize', 'color', 'emoticons', 'inlineStyle', 'paragraphStyle', 'paragraphFormat', 'align', 'formatOL', 'formatUL', 'outdent'
new FroalaEditor('#froala-editor', {
toolbarButtons: ['fullscreen', 'bold', 'italic', 'underline', 'strikeThrough', 'subscript', 'superscript', '|', 'fontFamily', 'fontSize', 'color', 'inlineStyle', 'paragraphStyle', '|', 'paragraphFormat', 'align', 'formatOL', 'formatUL', 'outdent', 'indent', 'quote', '-', 'insertLink', 'insertImage', 'insertVideo', 'insertFile', 'insertTable', '|', 'emoticons', 'specialCharacters', 'insertHR', 'selectAll', 'clearFormatting', '|', 'print', 'help', 'html', '|', 'undo', 'redo','trackChanges','markdown']
});
我想知道Froala (https://www.froala.com/wysiwyg-editor)所有工具栏按钮的名称。我知道以下几个:
"undo"、"redo"、"bold"、"italic"、"underline"、"strikeThrough"、"selectAll"、"paragraphStyle"、"subscript"、"superscript"、"paragraphFormat"、"fontFamily"、"fontSize"、"align"、"formatOL"、"formatUL" , "outdent", "indent", "quote", "color", "emoticons", "insertTable", "createLink", "insertImage", "insertVideo"、"insertFile"、"fullscreen"、"html"、"save"
我至少错过了“插入水平线”按钮。
我终于找到了“插入水平线”按钮。是"insertHR".
在其官方页面上有一个包含 froala 所有可能功能的示例: https://www.froala.com/wysiwyg-editor/examples/full-featured
toolbarButtons: ['fullscreen', 'bold', 'italic', 'underline', 'strikeThrough', 'subscript', 'superscript', 'fontFamily', 'fontSize', 'color', 'emoticons', 'inlineStyle', 'paragraphStyle', 'paragraphFormat', 'align', 'formatOL', 'formatUL', 'outdent'
new FroalaEditor('#froala-editor', {
toolbarButtons: ['fullscreen', 'bold', 'italic', 'underline', 'strikeThrough', 'subscript', 'superscript', '|', 'fontFamily', 'fontSize', 'color', 'inlineStyle', 'paragraphStyle', '|', 'paragraphFormat', 'align', 'formatOL', 'formatUL', 'outdent', 'indent', 'quote', '-', 'insertLink', 'insertImage', 'insertVideo', 'insertFile', 'insertTable', '|', 'emoticons', 'specialCharacters', 'insertHR', 'selectAll', 'clearFormatting', '|', 'print', 'help', 'html', '|', 'undo', 'redo','trackChanges','markdown']
});