Okay, Thank you Morris,
I used your help and some digging to get this to work:
http://worldenglishbible.tiddlyspot.com/#%5B%5BFET%20for%20first%209%20verses%20of%20a%20particular%20book%5D%5D
(sorry - it takes a long time to load - its got the entire bible in
it)
code:
<<forEachTiddler
where
'tiddler.tags.contains("book") && tiddler.title.contains("Matthew")'
sortBy '(tiddler.title)'
ascending
write
'"<<tiddler "+"[["+tiddler.title+"##1:1"+"]]"+"\>\>\n"+"<<tiddler
"+"[["+tiddler.title+"##1:2"+"]]"+"\>\>\n"+"<<tiddler
"+"[["+tiddler.title+"##1:3"+"]]"+"\>\>\n"+"<<tiddler
"+"[["+tiddler.title+"##1:4"+"]]"+"\>\>\n"+"<<tiddler
"+"[["+tiddler.title+"##1:5"+"]]"+"\>\>\n"+"<<tiddler
"+"[["+tiddler.title+"##1:6"+"]]"+"\>\>\n"+"<<tiddler
"+"[["+tiddler.title+"##1:7"+"]]"+"\>\>\n"+"<<tiddler
"+"[["+tiddler.title+"##1:8"+"]]"+"\>\>\n"+"<<tiddler
"+"[["+tiddler.title+"##1:9"+"]]"+"\>\>\n"'
>>
So I know how to //write// sections from a FET thingie, but I still
have a question:
Lets say I wanted to do a FET call (not sure of the proper
terminology) and get the same result, but not by listing out each
individual <<tiddler [[title##section]]>> like I've done there, but by
putting a single generic <<tiddler [[titleVariable##sectionVariable]]
>> in there and have the FET do a loop or index like thing that just
starts at a given section value and increases alphabetically (as all
my sections would increase numerically (yes I do realize, however that
I'll have to add a "0" at the first 9 verses of each book))
I've thought of trying to do this with placemarkers (or whatever
they're called: $1, $2 etc), but I'd like to have more than 9 at a
time, and besides, I still think it'd be easier to do it with
something like a "for/next loop"
Any suggestions?
Dave
> > - Show quoted text -- Hide quoted text -