[tw] Re: Convert tag pills to links when creating static html?

2016-11-12 Thread David Gifford
Hey Mark This tweak did the trick. Thanks for nudging me to the right tiddler to tweak, and for giving me just enough to be able to figure it out! Dave \define tag-styles() background-color:$(backgroundColor)$; fill:$(foregroundColor)$; color:$(foregroundColor)$; \end \define tag-body-inner(co

Re: [tw] Re: Convert tag pills to links when creating static html?

2016-11-12 Thread David Gifford
This gives me tag pills as links <$link><$view field="title"/> but doesn't adjust the background color based on the color field of the tiddler. On Saturday, November 12, 2016 at 9:55:23 PM UTC-6, David Gifford wrote: > > Thanks Mark! > > Bonus to you anyone who can make the links still look li

Re: [tw] Re: Convert tag pills to links when creating static html?

2016-11-12 Thread David Gifford
Thanks Mark! Bonus to you anyone who can make the links still look like tag pills, and pull from the color field of the tag's tiddler for the color of the tag pill. On Sat, Nov 12, 2016 at 12:06 PM, 'Mark S.' via TiddlyWiki < tiddlywiki@googlegroups.com> wrote: > I'm sure someone will come up wi

Re: [tw] Re: > is lying?

2016-11-12 Thread 'Mark S.' via TiddlyWiki
Since I never stay up until these un-Thorly hours, I played with my system clock, moving it to a time between 11pm and 12am. Sure enough, the week jumps to 46. This was on Firefox under Windows 7. I tested again with Chrome, and the same thing happened. So it appears that is a real bug, and any

Re: [tw] Re: > is lying?

2016-11-12 Thread Philippe Le Toquin
It is now past midnight and we are back to week 45. Sorry no screenshot as I don't know how to do it on a tablet -- 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 t

Re: [tw] Re: > is lying?

2016-11-12 Thread Philippe Le Toquin
Hello, So

[tw] Re: Filter a list with a variable that contains multiple words

2016-11-12 Thread Fidel N
Yes, the way I use it is, in the default tiddler that appears whenever you create a new tag (with that tags name), i put this, so whenever I open a tag's main tiddler, I see all the tiddlers with that tag, see their other tags, but don't see the main tag all the time (hence the removing of that

[tw] Re: Filter a list with a variable that contains multiple words

2016-11-12 Thread 'Mark S.' via TiddlyWiki
There's no documentation explaining what the filter wants in terms of and "array". But this variation seems to work: <$set name="myVar" value=<>> <$list filter='[is[current]tags[]] -[]'> Be sure to switch the tiddler out of edit mode -- this won't work in preview mode (because the underlying

[tw] Re: using dungeon like dice roll (ie 2d6) notation in tobibeer eval

2016-11-12 Thread 'Mark S.' via TiddlyWiki
Assuming you have Math.js added to your system the way Tobias indicates, it looks like this works: <$set name="2d6" filter="[[]eval[randomInt(1,6)+randomInt(1,6)]]" > <<2d6>> Inside of the <$set> tags, <<2d6>> generates a number from 2 to 12. HTH Mark On Saturday, November 12, 2016 at 4:19:59

[tw] Filter a list with a variable that contains multiple words

2016-11-12 Thread Fidel N
Hey guys, the following code only works when "myVar" contains one word. Whenever two words come out of it, the filter doesnt work properly, despite I confirmed the variable contains the two words it should (by trying it using <> and checking that it has) Here is the filter I'm refering to, specif

[tw] Re: Convert tag pills to links when creating static html?

2016-11-12 Thread 'Mark S.' via TiddlyWiki
I'm sure someone will come up with a more elegant solution, but if you replace the contents of: $:/core/ui/TagTemplate with <$link><$view field="title" format="text" /> Then all your tag buttons will become links (of course, this assumes they have something to link to). Then do your export -

[tw] Convert tag pills to links when creating static html?

2016-11-12 Thread David Gifford
Hi guys I don't know if this is possible, but I was wondering if there would be a way to convert tag pills to links to the tiddlers for those tags when exporting all tiddlers as static htmls. Having this feature would facilitate navigation between statics of each tiddler if one also created a

[tw] [tw5] how to use enter button in search field?

2016-11-12 Thread sini-Kit
Hi! I want if I press "enter" in search field to open tiddler with name "mytiddlersearch" is it possible? -- 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 tiddly

Re: [tw] Re: > is lying?

2016-11-12 Thread Philippe Le Toquin
By set up you mean the tiddlywiki I am setting up? if it is then my intention was always to share it back once I am happy with it but as you can see from my multiple message I am having some issue with putting what's in my head in code Basically I am a homebaker and to keep track of what I am d

Re: [tw] Re: > is lying?

2016-11-12 Thread Riz
Yours seems like an interesting set up. If you haven't entered much personal data already, care to share? May be it will also enable us to see if the problem persists in another set up in another part of the world. -- You received this message because you are subscribed to the Google Groups

[tw] using dungeon like dice roll (ie 2d6) notation in tobibeer eval

2016-11-12 Thread Guillaume Escrivant
Hello I want to use eval to simulate dice roll - using 2d6 notation instead of randomInt(1,6) + randomInt(1,6) I'v seen in the Tobibeer code that it parse for variable, *<$set name="2d6" value="randomInt(1,6)+randomInt(1,6)"* ** But it dont work Unable to evaluate '9-(0+2d6)' (Error: Undefin