Might be a noob question but how do i add a tag to a section. Preferably to a callout.
> [!NOTE]+ Abilities
> #_/uniqueTableId
> ```dataviewjs
> await forceLoadCustomJS();
> const {CreatureSheet} = customJS
> CreatureSheet.spell_table(app, dv)
> ```
I basically copied your example css.
table.dataview:has([href="#_/uniqueTableId"]) {
display: none !important;
visibility: hidden !important;
}
[href^="#_"] {
display: none;
}
The tag disappears, but the table doesn’t.
