[tw5] Re: Parse field values to new tiddler(s)?

2020-06-12 Thread Stallings
That's it! Again, thank you for clarifying the steps. Documentation on https://tiddlywiki.com/ can be difficult to navigate if I don't know what I'm looking for. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and

[tw5] Re: Parse field values to new tiddler(s)?

2020-06-11 Thread Eric Shulman
Here's yet another version that combines the $set and $list parsing into one: \define annoTitle() $(currentTiddler)$ Annotation \define annoTags() [[$(currentTiddler)$]] Annotation <$button> <$list filter= "[{!!bibtex-annote}split[M)]butfirst[]split[{\textbar}]butlast[]]" variable=

[tw5] Re: Parse field values to new tiddler(s)?

2020-06-11 Thread Eric Shulman
On Thursday, June 11, 2020 at 6:02:15 PM UTC-7, Stallings wrote: > > I tried to remove "Extracted Annotations (6/7/2020, 1:57:43 PM)" from the > beginning of the string (that bit always ends with "AM)" or "PM)" with > <$list filter="[{!!bibtex-annote}*allafter[M)]*split[{\textbar}]butlast[]]" >

[tw5] Re: Parse field values to new tiddler(s)?

2020-06-11 Thread Stallings
Works perfectly! Your explanations were invaluable, thank you. After a good amount of trial-and-error, I now have a system of three tiddlers (example site so no one's working in the dark): 1. "Annotation Parser" containing your code above 2. "Annotation

[tw5] Re: Parse field values to new tiddler(s)?

2020-06-11 Thread Eric Shulman
On Thursday, June 11, 2020 at 6:57:54 AM UTC-7, Stallings wrote: > > I'd like to turn the value of a field ("bibtex-annote") into the content > of multiple new tiddlers for later use/transclusion. Right now, I am able > to copy the entire value to a single new tiddler with this button (adapted