>
> Thanks everyone. I have used <$list filter="[tag[Andrew C 
> Frank]sort[title]]">&bull; <$link/><br/></$list> And it does exactly what I 
> need.


The list-links macro does the same as the code you choose (and does 
bulleted (default) or numbered lists) but has one caveat-- it will display 
caption instead of title if the tiddler has one.

<<list-links "[tag[Andrew C Frank]sort[title]]">>


The ordered (numbered) list option had a typo, so it may not had worked

<<list-links "[tag[Andrew C Frank]sort[title]]"  type:""ol>> 

should be:
type:"ol"

variations of the code you choose (i need to make it into a macro so you 
could reuse it any tiddler without having to type the widget everytime):

indented bulleted list

<ul><$list filter="[tag[Andrew C 
Frank]sort[title]]"><li><$link/></li></$list></ul>

numbered list

<ol><$list filter="[tag[Andrew C 
Frank]sort[title]]"><li><$link/></li></$list></ol>

with border framed list results:

<style>.ragsspan {border:solid 1px; border-radius:4px; padding:0px 4px 0px 
4px;}
</style>
<$list filter="[tag[Andrew C Frank]]">

<span class="ragsspan"><$link/></span></$list>

<-- make sure the blank line between list widget and span is included -->

numbered table

<style>.ragstablenumb {counter-reset: serial-number; /* Set the serial 
number counter to 0 */}.ragstablenumb td:first-child:before 
{counter-increment: serial-number; /* Increment the serial number counter 
*/ content: counter(serial-number); /* Display the counter */}
</style>
<table class="ragstablenumb"><$list filter="[tag[Andrew C 
Frank]]"><tr><td></td><td><$link><$view 
field="title"/></$link></td></tr></$list></table>

columns

<style>.threecolumns {
   display:block;
   column-count:3;
   column-gap:1em;
   -webkit-column-count:3;
   -webkit-column-gap:1em;}
</style>
@@.threecolumns
<$list filter="[tag[Andrew C Frank]]"><$link/><br/></$list>
@@

with frame bordered div that can be idented with css margin settings of the 
div:

<style>.threecolumns {
   display:block;
   column-count:3;
   column-gap:1em;
   -webkit-column-count:3;
   -webkit-column-gap:1em;
    border: dotted 2p;}
</style>
<div class="threecolumns">
<$list filter="[tag[Andrew C Frank]]"><$link/><br/></$list>
</div>
 

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/db746f36-3d86-460e-983f-bba9629c95c2%40googlegroups.com.

Reply via email to