You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
315 B

6 years ago
  1. // start point
  2. export default {
  3. name: 'dropcap',
  4. initialize() {
  5. setup(helper);
  6. }
  7. };
  8. export function setup(helper) {
  9. helper.registerOptions((opts, siteSettings)=>{
  10. opts.features['dropcaps'] = true; //!!siteSettings.dropcaps_enabled;
  11. });
  12. helper.whiteList([ 'span.dropcaps', 'span.sclass' ]);
  13. }