[tw] Re: Tags defined by tag macro <> not searchable

2018-01-10 Thread Stefan Spycher
Thanks. i would have preferred the tag pill to work as expected, and not 
install a plugin. the referenced plugin works, sort of, but has its quirks. 
so for example, the tags are sticky, meaning, if i remove the inline markup 
(the #), the tag stays. plus it doesnt' remove the marker...so the hashtag 
or whatever symbol i choose is not parsed. 

On Tuesday, January 9, 2018 at 5:21:04 PM UTC+1, magasine wrote:
>
> Take a look at this ... 
> https://ibnishak.github.io/Tesseract/pluginsandmacros/hashtag2tag.html#Hashtag2tag
>
> Em terça-feira, 9 de janeiro de 2018 14:07:50 UTC-2, Stefan Spycher 
> escreveu:
>>
>> Hi, 
>>
>> I'd like to use inline tags to categorize and markup relevant content, 
>> and afterwards be able to search for those occurrences. 
>> the tag pill macro <> seems to cover the first part, but i 
>> fail to craft a filter that finds that tiddler with 'foobar' tag. although 
>> simple, [tag[foobar]] is where i'm stuck. 
>> so either the <> macro doesn't generate 'first class' tags, or it's 
>> a bug, or i'm doing it wrong :)
>>
>> any help would be appreciated
>>
>> thanksl
>>
>

-- 
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 tiddlywiki@googlegroups.com.
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/e4460f35-ae52-4097-9f60-9c125d12dbaa%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Tags defined by tag macro <> not searchable

2018-01-09 Thread Stefan Spycher
Hi, 

I'd like to use inline tags to categorize and markup relevant content, and 
afterwards be able to search for those occurrences. 
the tag pill macro <> seems to cover the first part, but i fail 
to craft a filter that finds that tiddler with 'foobar' tag. although 
simple, [tag[foobar]] is where i'm stuck. 
so either the <> macro doesn't generate 'first class' tags, or it's a 
bug, or i'm doing it wrong :)

any help would be appreciated

thanksl

-- 
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 tiddlywiki@googlegroups.com.
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/b9680916-5df7-4c28-9c45-c18b2b0301d3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: sameday[]

2017-11-27 Thread Stefan Spycher
@all: you guys rock! thanks a lot for your help!

for the record, i went with Erics suggestion:


<$list filter="[sameday:created{!!created}] [sameday:modified{!!created}]">
<$link><$text text=<>/>


@Eric: the

[sameday:created{!!created}]

-notation is what i couldn't come up with, literally in hours
I'm still trying to understand where i missed the part in the docs where 
this would have been described.

anyway, thanks, you made my day.

Stefan



Am Montag, 27. November 2017 21:45:51 UTC+1 schrieb Stefan Spycher:
>
> I'm using tiddlywiki journaling extensively these days, and at the end of 
> the week, i'd like to get an overview on all the created and edited 
> tiddlers of any given past day. 
> the recent tab doesn't help much, because it's hardcoded to 100 days 
> (don't wanna change that), and i'd like to have this overview in the daily 
> journal tiddlers. 
>
> so, the thing i found is <$list filter=[sameday[20171127]]>
>
> but what i'm having a hard time figuring out is how i can substitude the 
> hardcoded date to the 'created' date of the current tiddler (which is the 
> daily journal tiddler, so it's create date is exactly what i could use)
>
> long story short, how to use the  created date in the 
> correct format (MMDD) as date for the sameday operator?
>
> thanks a lot!
>

-- 
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 tiddlywiki@googlegroups.com.
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/f85121ce-5299-44d9-90e5-d7a479c58ef0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: sameday[]

2017-11-27 Thread Stefan Spycher
thought of that too. but the <> macro does exactly what it implies: 
whenever you refresh the page, <> refreshes too, to the current 
timestamp. this isn't helpful if - in my use case - one wants to go back a 
few days and check the created & modified tiddlers *of that day* in the 
past.

Am Montag, 27. November 2017 22:08:59 UTC+1 schrieb Rob Hoelz:
>
> Another thought - you could probably use the "now" macro to do what you 
> want: https://tiddlywiki.com/#now Macro
>
> On Monday, November 27, 2017 at 3:06:03 PM UTC-6, Rob Hoelz wrote:
>>
>> Hi Stefan,
>>
>> I have a little macro I wrote to get the current -MM; it would be 
>> trivial to adapt it to include the day of the month too!
>>
>> Here's the macro:
>>
>> https://gist.github.com/hoelzro/d05b9360d753fd62499a5a6ca403f53b
>>
>> I use it on my Journal tiddler to list journal entries for the current 
>> month, like so: 
>>
>> {{{ [tag[Journal]prefixsort[]reverse[]] }}}
>>
>> -Rob
>>
>> On Monday, November 27, 2017 at 2:45:51 PM UTC-6, Stefan Spycher wrote:
>>>
>>> I'm using tiddlywiki journaling extensively these days, and at the end 
>>> of the week, i'd like to get an overview on all the created and edited 
>>> tiddlers of any given past day. 
>>> the recent tab doesn't help much, because it's hardcoded to 100 days 
>>> (don't wanna change that), and i'd like to have this overview in the daily 
>>> journal tiddlers. 
>>>
>>> so, the thing i found is <$list filter=[sameday[20171127]]>
>>>
>>> but what i'm having a hard time figuring out is how i can substitude the 
>>> hardcoded date to the 'created' date of the current tiddler (which is the 
>>> daily journal tiddler, so it's create date is exactly what i could use)
>>>
>>> long story short, how to use the  created date in the 
>>> correct format (MMDD) as date for the sameday operator?
>>>
>>> thanks a lot!
>>>
>>

-- 
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 tiddlywiki@googlegroups.com.
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/d58fdd58-82cf-427e-aa97-09cd20294294%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] sameday[]

2017-11-27 Thread Stefan Spycher
I'm using tiddlywiki journaling extensively these days, and at the end of 
the week, i'd like to get an overview on all the created and edited 
tiddlers of any given past day. 
the recent tab doesn't help much, because it's hardcoded to 100 days (don't 
wanna change that), and i'd like to have this overview in the daily journal 
tiddlers. 

so, the thing i found is <$list filter=[sameday[20171127]]>

but what i'm having a hard time figuring out is how i can substitude the 
hardcoded date to the 'created' date of the current tiddler (which is the 
daily journal tiddler, so it's create date is exactly what i could use)

long story short, how to use the  created date in the 
correct format (MMDD) as date for the sameday operator?

thanks a lot!

-- 
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 tiddlywiki@googlegroups.com.
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/7cba5d22-9066-467c-8e3e-207430e28294%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 Is there a way to filter for tiddlers with fields that contain a string of text?

2017-10-27 Thread Stefan Spycher
I'm interested in the same. @Aaron, can you post your solution?

Thanks

Stefan

Am Montag, 5. Juni 2017 22:14:15 UTC+2 schrieb Aaron Haslem:
>
>
>
> Took me a few tries to figure out the structure, but that works great.  
> Exactly what I was looking for.  Thanks Mat.
>

-- 
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 tiddlywiki@googlegroups.com.
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/da4c87ac-ad16-4484-911a-0d864dd804df%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] listing/transcluding snippets of highlighted text

2017-10-26 Thread Stefan Spycher
Thomas, a quick update: your macro works like a charm, and i'm eternally 
grateful ! :) 
THANK YOU (merci villmol)

Am Mittwoch, 25. Oktober 2017 09:49:15 UTC+2 schrieb Stefan Spycher:
>
> Thanks Thomas, i'll give it a try. 
> for the record, i started playing around with Tobias Beers split plugin 
> [0], which seems pretty straight forward too. so, i'll try to find out the 
> differences between those two
>
> thanks a lot! 
>
> Stefan
>
> Edit: Thomas: LoL @ "Grüessli", i didn't notice at once.  fellow swissies 
> [0] http://tobibeer.github.io/tw5-plugins/#split
>
> Am Dienstag, 17. Oktober 2017 22:56:23 UTC+2 schrieb Thomas Elmiger:
>>
>> Hi Stefan,
>>
>> After importing the macro from here 
>> <http://tid.li/tw5/hacks.html#Extract%20Macro> (by dragging over the 
>> link in the *Extract Macro Components* paragraph) you should be able to 
>> place the following in any tiddler to find all highlighted text: 
>>
>> <>
>>
>> the parameters tell the extract macro to …
>>
>>- look for content in a tiddler titled *OriginalTiddler*
>>- cut out snippets starting with ,, (the subscript marker)
>>- cut out snippets up to the ending marked with ,, (the subscript 
>>marker again)
>>- give you all snippets (instead of only the first)
>>
>>
>> Hope, this helps.
>>
>> Grüessli
>> Thomas
>>
>> Am Samstag, 14. Oktober 2017 07:10:42 UTC+2 schrieb Stefan Spycher:
>>>
>>> @Thomas, i'll look into it. i did a few quick tests, it worked, but 
>>> didn't *really* cover my use case yet. i'm sure i'm missing something 
>>> though.
>>> in a nutshell, what i'm stumbling over is the fact that i don't want to 
>>> use the search in the right rail, but create twiddlers which do the search 
>>> & extraction.
>>> does that make sense? :)
>>>
>>> But thanks for sharing, i'll dig deeper next week!
>>>
>>> @Mat, no worries, and huge thanks for your help so far!
>>> …
>>>
>>>
>>> Am Freitag, 13. Oktober 2017 13:03:47 UTC+2 schrieb Thomas Elmiger:
>>>>
>>>> Hi Stefan and Mat
>>>>
>>>> My Extract macro should do the job. In a recent discussion we pointed 
>>>> out, that the documentation is lousy (sorry!), but the discussion itself 
>>>> should be helpful. 
>>>>
>>>>
>>>> https://groups.google.com/forum/m/?utm_medium=email_source=footer#!msg/tiddlywiki/u-Dq4CywvD0/vrL_gfB0AwAJ
>>>>
>>>> Cheers,
>>>> Thomas 
>>>>
>>>>

-- 
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 tiddlywiki@googlegroups.com.
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/34338afd-b584-4aab-8049-37a7cb194a0d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] listing/transcluding snippets of highlighted text

2017-10-25 Thread Stefan Spycher
Thanks Thomas, i'll give it a try. 
for the record, i started playing around with Tobias Beers split plugin 
[0], which seems pretty straight forward too. so, i'll try to find out the 
differences between those two

thanks a lot! 

Stefan

[0] http://tobibeer.github.io/tw5-plugins/#split

Am Dienstag, 17. Oktober 2017 22:56:23 UTC+2 schrieb Thomas Elmiger:
>
> Hi Stefan,
>
> After importing the macro from here 
> <http://tid.li/tw5/hacks.html#Extract%20Macro> (by dragging over the link 
> in the *Extract Macro Components* paragraph) you should be able to place 
> the following in any tiddler to find all highlighted text: 
>
> <>
>
> the parameters tell the extract macro to …
>
>- look for content in a tiddler titled *OriginalTiddler*
>- cut out snippets starting with ,, (the subscript marker)
>- cut out snippets up to the ending marked with ,, (the subscript 
>marker again)
>- give you all snippets (instead of only the first)
>
>
> Hope, this helps.
>
> Grüessli
> Thomas
>
> Am Samstag, 14. Oktober 2017 07:10:42 UTC+2 schrieb Stefan Spycher:
>>
>> @Thomas, i'll look into it. i did a few quick tests, it worked, but 
>> didn't *really* cover my use case yet. i'm sure i'm missing something 
>> though.
>> in a nutshell, what i'm stumbling over is the fact that i don't want to 
>> use the search in the right rail, but create twiddlers which do the search 
>> & extraction.
>> does that make sense? :)
>>
>> But thanks for sharing, i'll dig deeper next week!
>>
>> @Mat, no worries, and huge thanks for your help so far!
>> …
>>
>>
>> Am Freitag, 13. Oktober 2017 13:03:47 UTC+2 schrieb Thomas Elmiger:
>>>
>>> Hi Stefan and Mat
>>>
>>> My Extract macro should do the job. In a recent discussion we pointed 
>>> out, that the documentation is lousy (sorry!), but the discussion itself 
>>> should be helpful. 
>>>
>>>
>>> https://groups.google.com/forum/m/?utm_medium=email_source=footer#!msg/tiddlywiki/u-Dq4CywvD0/vrL_gfB0AwAJ
>>>
>>> Cheers,
>>> Thomas 
>>>
>>>

-- 
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 tiddlywiki@googlegroups.com.
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/5c38cd2f-5e11-4eef-8430-ae3003af9370%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Extracting Introductions From Tiddlers

2017-10-25 Thread Stefan Spycher
Hi Tobias, 

Quick question on a potential limitation of the split plug-in i just 
stumbled over:

the code 


<$list filter="[tag[excerpttest]]">
 <$link><>
  <$list filter="[all[current]get[text]split:first[]addsuffix[...]]">
//<>//

  


returns the *first  *instance of the marker...any subsequent excerpt in the 
same gets ignored. i understand the use case you're coming from, but would 
there be a way of extracting *all *snippets in the same tiddler?

Am Sonntag, 9. Oktober 2016 17:16:36 UTC+2 schrieb Tobias Beer:
>
> Hi everyone,
>
> based on the feedback of others,
> especially David 
>  and 
> sini-Kit 
> ,
> I did some major rewriting of the article:
>
> Extracting Introductions From Tiddlers @ tb5 
> 
>
> I have added a macro,
> a bit different than David's,
> which I now recommend for both
> defining and retrieving multi-line introductions.
>
> I also briefly mentioned
> what I've been using mostly
> before this little article:
> a *summary* field, as explained here:
>
> Conditional ViewTemplate Section @ tb5 
> 
>
> Best wishes,
>
> Tobias.
>

-- 
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 tiddlywiki@googlegroups.com.
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/78f1b563-0c3f-402c-9621-284086af1d07%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] listing/transcluding snippets of highlighted text

2017-10-13 Thread Stefan Spycher



Hi Mat, 

i gave it another try, removing the whitespaces. unfortunately without an 
improvement:



Am Donnerstag, 12. Oktober 2017 15:49:45 UTC+2 schrieb Mat:
>
> @Stefan
>
> if I recall (it was a while ago!), the start- and end markers must be on 
> the format " & Text" and "End Of Text&& " respectively, i.e note the 
> spaces and lack of spaces surrounding the "&&".
>
> <:-)
>

-- 
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 tiddlywiki@googlegroups.com.
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/05ed450c-b216-422a-9518-0a098de11c19%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] listing/transcluding snippets of highlighted text

2017-10-12 Thread Stefan Spycher
sorry, my previous comment got mangled by the screenshot somehow
please reduce my tech-savvyness index by 2 points :) 

@Mat, i'm getting results, but they are garbled. I tired with several 
markers (some weird, very distinct strings too) to no avail. am i doing it 
wrong or am i facing a TW version incompatibility?

I would love getting this to work, it's as if you've read my mind

thanks 
Stefan

Am Donnerstag, 12. Oktober 2017 11:34:27 UTC+2 schrieb Mat:
>
> Hi Stefan and welcome to TW! If you like TW - don't forget to tell your 
> friends !
>
> I made the CherryPicker  for pretty 
> much exactly what you ask for. It is not perfected though.
> I believe fellow Thomas has made variant of this too (it may be his 
> Extract macro, not sure).
>
> <:-)
>

-- 
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 tiddlywiki@googlegroups.com.
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/76b9832f-7985-412c-9269-c856f352b8fd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] listing/transcluding snippets of highlighted text

2017-10-12 Thread Stefan Spycher



Hey Mat, thanks a LOT for your help!

it might be TW version issue (or me just doing it wrong), but i'm not 
getting clean results yet (see screenshot)


Am Donnerstag, 12. Oktober 2017 11:34:27 UTC+2 schrieb Mat:
>
> Hi Stefan and welcome to TW! If you like TW - don't forget to tell your 
> friends !
>
> I made the CherryPicker  for pretty 
> much exactly what you ask for. It is not perfected though.
> I believe fellow Thomas has made variant of this too (it may be his 
> Extract macro, not sure).
>
> <:-)
>

-- 
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 tiddlywiki@googlegroups.com.
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/a883b829-ac9d-4049-b17a-4a478d29336a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TW5] listing/transcluding snippets of highlighted text

2017-10-12 Thread Stefan Spycher
Hi!

first off, i'm a newbie (been using TW for 4 days), but LOVE it. 
tech-savvyness on a scale from 1 (aka: my grandmother) -10 (aka: your 
typical nerd): 4

Use Case: 
i'm taking many notes, pasting emails, taking meeting minutes etc in TW. 
so, basically 'collecting' data.
about 1% of that turns out to be important enough to include into a weekly 
report i'm sending out to peers and supervisors. 
i'm currently marking / highlighting that 1% *inline* by using another tip 
from this forum...i'm overriding the CSS for the subscript decoration

Q: is there a way to create a collector tiddler, that filters/searches for 
the 'sub' CSS in all tiddlers, and transcludes the string i highlighted?

Thank you!

S


-- 
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 tiddlywiki@googlegroups.com.
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/38866bf7-5840-4a9d-ab47-025b8a27c6d6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.