BBob icon indicating copy to clipboard operation
BBob copied to clipboard

html5 preset not complete

Open cgorrieri opened this issue 2 years ago • 1 comments

Looking at the official definition of tags https://www.bbcode.org/reference.php the HTML5 preset is incomplete. Is there a plan to add the missing tags?

cgorrieri avatar Feb 27 '23 09:02 cgorrieri

Thanks for your issue. Yes, I can add full support for bbcode tags in future. Also when I developed html5 preset I look at https://en.wikipedia.org/wiki/BBCode

For workaround you can try to extend existing html5 preset

import presetHTML5 from '@bbob/preset-html5';

const yourOwnPreset = presetHTML5.extend((tags) => ({
  ...tags,

  yourTag: (node) => ({
    tag: 'span',
    attrs: {
      style: 'font-weight: bold'
    },
  }),
}));

JiLiZART avatar Mar 01 '23 23:03 JiLiZART