I'm trying to implement a sidebar tiddler for my journal entries that lists 
tiddlers tagged "journal" by year and month created, like in this image 
<http://s12.postimg.org/hn9dt9eq5/blog_archive.png>. I want the list to 
generate automatically, i.e. I don't have to "hard code" specific years and 
months into filters using things like [regexp:created[^201508]]. I fiddled 
with the timeline macro trying to get it to group by month, below is what I 
have so far. The problem is the inner list filters by full date and I think 
it could work if I could just extract the portion of the "created" field 
that I need (6 digits for month, 4 for associated year in another list). 
Admittedly I don't understand too well about how widgets work but after a 
lot of searching it seems like the problem is that Tiddlywiki itself 
doesn't have such a mechanism to do what I want. Is there any built-in way 
to do this in Tiddlywiki? If not, is there a way to get the effect I'm 
after in general? I definitely don't want to go with a calendar view 
solution. Sorry if I'm not clear enough. Any help on this would be 
appreciated, thanks.

<div class="tc-timeline">
    <$list 
filter="[tag[Journal]!is[system]has[created]!sort[created]each[created]]">
        <div class="tc-menu-list-item">
            <$view field="created" format="date" template="MMM"/>
            <$list filter="[created{!!created}!is[system]!sort[created]]">
                <div class="tc-menu-list-subitem">
                    <$link to={{!!title}}>
                        <<timeline-title>>
                    </$link>
                </div>
            </$list>
        </div>
    </$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 post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/297e3f28-a3a5-4ee3-b593-cdd2978a0563%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to