JiLiZART/BBob

html5 preset not complete

cgorrieri opened this issue · 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?

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'
    },
  }),
}));