So one of the first little changes I make to new TW is modifying the list-links macro so that I can choose to list either by caption (default) or to show the full title.
I was curious if there was a perticular reason as to why this isn’t something you can do by default?
Could doing so cause issues later on with the wiki?
Here is how I do it, in case anyone else would like to use it as well ^^
simply copy/paste below over the original found @ $:/core/macros/list
\define list-links(filter,type:"ul",subtype:"li",class:"",field:"caption",emptyMessage)
\whitespace trim
<$type$ class="$class$">
<$list filter="$filter$" emptyMessage=<<__emptyMessage__>>>
<$subtype$>
<$link to={{!!title}}>
<$let tv-wikilinks="no">
<$transclude field="""$field$""">
<$view field="title"/>
</$transclude>
</$let>
</$link>
</$subtype$>
</$list>
</$type$>
\end