0
votes

{{ apos.area(data.page, 'body', { widgets: { 'apostrophe-images': { size: 'full' }, 'apostrophe-rich-text': { toolbar: [ 'Styles', 'Bold', 'Italic', 'Link', 'Unlink','Table' ], styles: [ { name: 'Heading', element: 'h3' }, { name: 'Paragraph', element: 'p' }, { name: 'Listitems', element: 'li' } ] } } }) }}

1

1 Answers

0
votes

To add lists to a rich text widget you want to add 'NumberedList' or 'BulletedList' to the toolbar array in your configuration.

Your code would look like

{{ apos.area(data.page, 'body', { 
  widgets: { 
    'apostrophe-images': { size: 'full' },
    'apostrophe-rich-text': { 
      toolbar: [ 'Styles', 'Bold', 'Italic', 'Link', 'Unlink', 'Table', 'NumberedList', 'BulletedList' ], 
      styles: [
        { name: 'Heading', element: 'h3' },
        { name: 'Paragraph', element: 'p' }
      ] 
    }
  }
}) }}