[tw] Re: [TW5] Numbering Items With List Filter

2017-01-19 Thread Matthew Lauber
Glad it got sorted out for you! -- 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 tiddlywiki+unsubscr...@googlegroups.com. To post to this group, send email to

[tw] Re: [TW5] Numbering Items With List Filter

2017-01-19 Thread Tobias Beer
Hi Michaela, Just use the below w/o extra newlines, since *you do not want additional paragraphs* that would otherwise be created owed to the parsing in block mode . <$list filter="[!has[draft.of]tag[whatever]!sort[however]]"> <$view field="title"/>

[tw] Re: [TW5] Numbering Items With List Filter

2017-01-18 Thread michaelharrison619
Mr. Mal, thank you for the original suggestion. Penguinlay and Thomas, thank you both for the clarification. I was missing the tags. Adding those has gotten it working. Again, thanks! -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To

[tw] Re: [TW5] Numbering Items With List Filter

2017-01-18 Thread Thomas Elmiger
Hi Mr. Mal’s solution should work, here is some similar code that works for me: <$list filter="""[list[$:/StoryList]]"""> <$link to={{!!title}}><$view field="title"/> If this does not work in your wiki, then maybe you have something in the code above or below that has an undesired

[tw] Re: [TW5] Numbering Items With List Filter

2017-01-18 Thread Penguinlay
If you combine Matthew's suggestion with Mr. Mal, you get the numbered list of links. <$list filter="[system[]]"> <$link to={{!!title}}><$view field="title"/>

[tw] Re: [TW5] Numbering Items With List Filter

2017-01-18 Thread Penguinlay
It worked fine for me. Here is a screenshot of mine. On Wednesday, January 18, 2017 at 7:51:39 PM UTC-8,

[tw] Re: [TW5] Numbering Items With List Filter

2017-01-18 Thread michaelharrison619
Mr. Mal, thank you for the suggestion, but as far as I can tell that has only indented the list. Perhaps I have worded myself poorly, but I am hoping there is someway I can number a list of Tiddlers. On Wednesday, January 18, 2017 at 10:42:12 PM UTC-5, Mr. Mal wrote: > > > <$list

[tw] Re: [TW5] Numbering Items With List Filter

2017-01-18 Thread Mr. Mal
<$list filter="[!has[draft.of]tag[whatever]!sort[however]]"> <$view field="title"/> Try this -- 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

[tw] Re: [TW5] Numbering Items With List Filter

2017-01-18 Thread michaelharrison619
Yes, that is true, and shame on me for leaving it out. However, I have already tried something like: <$list filter="[!has[draft.of]tag[whatever]!sort[however]]"> #<$link to={{!!title}}><$view field="title"/> and I am afraid the result is: 1. Tiddler title A 1. Tiddler title B 1. Tiddler

[tw] Re: [TW5] Numbering Items With List Filter

2017-01-18 Thread Matthew Lauber
<$list filter="[!has[draft.of]tag[whatever]!sort[however]]"> #<$link to={{!!title}}><$view field="title"/> The empty line beneath the <$list> widget is important. On Wednesday, January 18, 2017 at 9:43:59 PM UTC-5, michaelha...@gmail.com wrote: > > I will apologize in advance if what I am