That's an easy way to start. But if you expect to have lots of tiddlers 
some day, it might be good to think about how to leverage TW5's various 
tools for listing and editing. When your list becomes large, maintaining 
all those links by hand will become harder.

If you apply a date field, then using PMario's suggested code your list 
might be generated in  a single lines, like:

<<list-links "[has[date]] +[nsort[date]]">>

One line of code, and you have all your dated tiddlers listed!

If you're worried about having to open and add those dates one by one, then 
a couple lines like this can make the job easier:

<table>
<tr><th>Tiddler</th><th>Date</th></tr>
<$list filter="[all[tiddlers]]" >
<tr><td><$view field="title"/></td><td><$edit-text field="date" tag="input" 
width="50"/></td></tr>
</$list>
</table>

You can just type in the date for each tiddler without having to open for 
editing. I used "all[tiddlers]" in the example, but that may be too many 
tiddlers at once. There are ways to manage that, but maybe this is good 
enough for now.

Be sure to test PMario's lister from time to time to make sure that things 
are sorting the way you expect. Generally, for computer sorting purposes, 
you want date fields to be designed to reflect increasing specificity. That 
is, you want your date to look like "yyyy-mm-dd" NOT "mm/dd/yyyy" because 
the latter will not sort meaningfully.

Good luck!
Mark

On Wednesday, June 28, 2017 at 6:47:10 AM UTC-7, Eneko Gotzon wrote:
>
> Hi all.
>
> On Wed, Jun 28, 2017 at 4:32 AM, 'Mark S.' via TiddlyWiki <
> [email protected] <javascript:>> wrote:
>
>> You're overworking the title field
>
>
> ​Maybe it is an easiest approach to use an introductory tiddler as ​index, 
> linking its references to the corresponding content tiddler. Do you agree?
>
> Sorry about this kind of questions… :/
>
> ​Thank you.
>
> -- 
> Eneko Gotzon Ares
> [email protected] <javascript:>
>

-- 
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 post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/09692fac-cb52-42c4-b1c2-3493f1f04185%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to