You are here

bueditor.button.custom_headings.yml in BUEditor 8.2

Same filename and directory in other branches
  1. 8 config/install/bueditor.button.custom_headings.yml
config/install/bueditor.button.custom_headings.yml

File

config/install/bueditor.button.custom_headings.yml
View source
  1. # Custom(editable) button that inserts headings.
  2. id: custom_headings
  3. label: 'Headings'
  4. text: 'H'
  5. code: |
  6. js: E.tagChooser([
  7. ['h1', 'Heading1'],
  8. ['h2', 'Heading2'],
  9. ['h3', 'Heading3'],
  10. ['h4', 'Heading4'],
  11. ['h5', 'Heading5'],
  12. ['h6', 'Heading6']
  13. ], {applyTag: false});
  14. langcode: en