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.

21 lines
730 B

6 years ago
6 years ago
  1. export function setup(helper) {
  2. helper.registerOptions((opts, siteSettings)=>{
  3. opts.features['dropcaps'] = true; //!!siteSettings.dropcaps_enabled;
  4. });
  5. helper.allowList(["div.alert"]);
  6. helper.allowList(["div.alert.alert-silver"]);
  7. helper.allowList(["div.alert.alert-info"]);
  8. helper.allowList(["div.alert.alert-success"]);
  9. helper.allowList(["div.alert.alert-warning"]);
  10. helper.allowList(["div.alert.alert-error"]);
  11. helper.allowList(["div[class]"]);
  12. helper.allowList(["span[class]"]);
  13. helper.allowList(["font[color]"]);
  14. helper.allowList(["info"]);
  15. helper.allowList(["todo"]);
  16. helper.allowList(["warn"]);
  17. helper.allowList(["alert"]);
  18. helper.allowList(["success"]);
  19. helper.allowList(["msg"]);
  20. }