List-links-draggable, is possible to suppress the <li> output?

I’m using

<<list-links-draggable tiddler:"" type:"" subtype:"" itemTemplate:“TemplateViewRigaViaggio”>>

and I want a list without the bullet point, is possible to suppress it?

Thanks!

Hi, You can create a tiddler named: my-style-definitions tagged: $:/tags/Stylesheet with the following content

.my-list-class {
  list-style: none;
}

After saving it you can use a list with the class as follows.

<<list-links class:"my-list-class" filter:"[tag[HelloThere]]">>

This will also work with list-links-draggable. You can use any class-name. You only need to make sure to use the same name and prefix it with a dot in the tiddler tagged $:/tags/Stylesheet

Also see: https://tiddlywiki.com/#list-links-draggable%20Macro:[[list-links-draggable%20Macro]]%20[[list-links%20Macro]]%20[[list-links%20Macro%20(Examples)]]

have fun!

1 Like