[tw5] Re: change bullet list

2018-10-07 Thread S. S.
Though this is a year old topic, I thought I would leave a note here how this helped me. I wanted to make a list using letters instead of numbers or bullets - of the type: a. Item 1 b. Item 2 c. Item 3 Not being that conversant with CSS, this post, along with TW's page Styles and Cl

[tw5] Re: Close the previous tiddler automatically, when going to the next one?

2018-10-07 Thread Duke
Yes, I would like a special notes tiddler (I call it the journal.) to remain open in zoomin view, unaffected by the automatic closing behavior of zoomin, while story tiddlers (I call them panels.) are affected by zoomin normally. Here is an example of how I link to the next story tiddler. 3: [[

[tw5] Re: sending email from a tiddler

2018-10-07 Thread Mohammad
Sini-Kit, How do you use Google form in TW to send email? -Mohammad -- 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 p

[tw5] apply style to transclude

2018-10-07 Thread Mohammad
Dave, there are several route to do this, but the simplest is to add a style attribute in a span tag before transclude widget <$transclude/> -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails

[tw5] Re: how to generate a unique state tiddler for a reveal in a template

2018-10-07 Thread Andrés Pérez
/facepalm yup. That does work. thanks! On Sunday, October 7, 2018 at 10:52:31 PM UTC-4, Mark S. wrote: > > In order to concatenate, the macro needs either placeholders (e.g. $name$) > or variables (e.g. $(variable)$). In this case, $(currentTiddler)$ is > already available. So you should be able

[tw5] Re: reveal widget and other types

2018-10-07 Thread Mohammad
Thanks Mark. TW documentation is not good at all. It is expected the Tiddlywiki.com has the minimum information about TW features. Mohammad -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails

[tw5] Re: transclude variation of {{!!title}}

2018-10-07 Thread TonyM
Dave, Working example of macro and wikify to concatenate text Using the define we seem to need $(currentTiddler)$.d \define newvalue() $(currentTiddler)$.d eg \define detailstiddler() $(currentTiddler)$.d *<> :<$transclude tiddler=<>/> <$wikify name=details3 text="<>.d" > *<> :<$transclu

[tw5] Re: how to generate a unique state tiddler for a reveal in a template

2018-10-07 Thread 'Mark S.' via TiddlyWiki
In order to concatenate, the macro needs either placeholders (e.g. $name$) or variables (e.g. $(variable)$). In this case, $(currentTiddler)$ is already available. So you should be able to use: \define stateName(name) $:/state/$(currentTiddler)$/$name$ Good luck! -- Mark On Sunday, October 7,

[tw5] apply style to transclude

2018-10-07 Thread Dave
Hi, I have this in a table <$set name="desc" filter="[addsuffix[.d]]"> <$transclude tiddler=<>/> which displays the content of some tiddlers in a table (I omitted the rest of the table code), and I also have this in a stylesheet [data-tags*="descr"] .tc-tiddler-body { font-size:.6em; }

[tw5] how to generate a unique state tiddler for a reveal in a template

2018-10-07 Thread Andrés Pérez
So I have a reveal in a template tiddler because I need it to be reusable and unique per tiddler that is using the template. Basically I want a reveal in a tiddler that when clicked shows some text. I then want to use that same reveal in multiple tiddlers by just transcluding the template tiddle

[tw5] Applying actions to multiple tiddlers

2018-10-07 Thread TonyM
Fokjs, I am aware of actions in a button that contains a list widget that allows a change multiple tiddliers. Does anyone understand how this works?, Technicaly that is. How far can this be taken? Can I wrap any complex multilevel list that includes action widgets generated for each member of

Re: [tw5] Re: sending email from a tiddler

2018-10-07 Thread Arlen Beiler
Also check out this post on stack overflow which specifically addresses Gmail. https://stackoverflow.com/q/2583928/258482 -- 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 em

[tw5] Re: reveal widget and other types

2018-10-07 Thread 'Mark S.' via TiddlyWiki
Hi Mohammad, I made a correction (? my track record might not be so good) to the Reveal Widget docs: https://github.com/Jermolene/TiddlyWiki5/pull/3470 -- Mark On Sunday, October 7, 2018 at 11:33:48 AM UTC-7, Mohammad wrote: > > In the documentation in https://tiddlywiki.com/prerelease/#Reveal

[tw5] Re: sending email from a tiddler

2018-10-07 Thread Dave
How do you install that tesseract thing? https://ibnishak.github.io/Tesseract/pluginsandmacros/socialmacros/index.html#Social%20Networking%20comes%20to%20TW5

[tw5] Re: reveal widget and other types

2018-10-07 Thread TonyM
Mohammad, You are using the type="geteq" not the type="match" or type="nomatch" Are you highlighting the "text=" is also used for geteq etc..? Regards Tony On Monday, October 8, 2018 at 5:33:48 AM UTC+11, Mohammad wrote: > > In the documentation in https://tiddlywiki.com/prerelease/#RevealWidg

[tw5] Re: trying to combine actions in single button

2018-10-07 Thread Dave
Okay, I figured it out. This works: \define yesnotag() <$fieldmangler> <$button message="tm-add-tag" param="Yes">{{$:/core/images/new-button}}< $action-setfield $tiddler="$:/state/tab/sidebar--1835078512" text="Homework" /> <$button message="tm-remove-tag" param="Yes">{{$:/core/images/delete-butt

[tw5] Re: trying to combine actions in single button

2018-10-07 Thread Dave
thank you Mat. Yes, that method helped me to get this as a link that functions: <$button class="tc-btn-invisible tc-tiddlylink"> <$action-setfield $tiddler="$:/state/tab/sidebar--1835078512" text="Homework"/> click me but now I need to figure out how to attach that action to my pre-exis

[tw5] Re: [tw] Re: tiddlyclip for chrome

2018-10-07 Thread Kalmir
Hi, I am wondering if anyone is getting the following error with TiddlyClip (both 0.1.1 and 0.1.2) in Chrome? Or am I doing something wrong? The result of the error is that I never get beyond "dock here", i.e. I never get TiddlyClip's menu of how to pin, snip etc. a selection. The error: Erro

[tw5] Re: trying to combine actions in single button

2018-10-07 Thread Mat
This http://gototab.tiddlyspot.com/ ... should guide you how to do it. <:-) -- 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.co

[tw5] trying to combine actions in single button

2018-10-07 Thread Dave
I'm trying to add an action to the following button set that is currently functional: \define yesnotag() <$fieldmangler><$button message="tm-add-tag" param="Yes">{{$:/core/images/new-button}} <$button message="tm-remove-tag" param="Yes">{{$:/core/images/delete-button}} \end This, when you add

[tw5] Re: reveal widget and other types

2018-10-07 Thread Mohammad
In the documentation in https://tiddlywiki.com/prerelease/#RevealWidget it said, text The text to match when the type is *match* and *nomatch* But seems it is not correct. For example you can have a code like this: <$reveal type="gteq" state="myTest!!myconfig" text="mine"> This is another exper

[tw5] Re: Timimi plugin - released for firefox/chrome/chromium in linux/mac/windows

2018-10-07 Thread Erwan
Hi Riz, Thank you very much for this. Unfortunately I couldn't make it work with firefox on Ubuntu 18.04, I described the issue here: https://github.com/ibnishak/Timimi/issues/4 Let me know if there's anything I can try! Cheers Erwan On Saturday, August 18, 2018 at 7:09:22 AM UTC+1, Riz wrot

[tw5] reveal widget and other types

2018-10-07 Thread Mohammad
Is there any document reference on using reveal widget with other type of matching like lt, lg, ... -Mohammad -- 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 ti

Re: [tw5] Prerelease Comments plugin Style suggestion

2018-10-07 Thread Julio Peña
Hello David and all, Pardon the intrusion...I see very much Jeremy's point regarding the choice he made. However, I'm also in accord with David on the above statement. @David, that second example looks spot on. ;) Regards and blessings to all, Julio On Sunday, October 7, 2018 at 9:34:10 AM

[tw5] Re: Tinka pluging: How to add readme, usage and other tiddlers

2018-10-07 Thread 'Mark S.' via TiddlyWiki
Actually, the same information is already there. So perhaps my suggested doc isn't needed. -- Mark On Sunday, October 7, 2018 at 12:53:49 AM UTC-7, Mat wrote: > > Mark S. wrote: >> >> Mat wrote: >>> >>> >>> I'd like for documentation on this on tw.com (not just for Tinka). This >>> is the seco

Re: [tw5] Prerelease Comments plugin Style suggestion

2018-10-07 Thread David Gifford
Hi Jeremy Yes I figured that those were your reasons for making the styling choices you did. My answer: I think there is a distinction between making something stand out within a color scheme, and making something clash with that color scheme. I have made another example, this time with a mor

[tw5] Re: Tinka pluging: How to add readme, usage and other tiddlers

2018-10-07 Thread @TiddlyTweeter
I agree with Mat. I think its more helpful than just for Tinka. Its a more generic set of clarifications about plugin-making. Good stuff. Josiah Mat wrote: >>> >>> The information is not for Tinka *per se* but about plugins so it >>> should probably be in, or associated with, this tiddler; >

Re: [tw5] Query -- Full Historical TW Changelog?

2018-10-07 Thread @TiddlyTweeter
Thank you very much. That is very useful advice. Josiah Jeremy Ruston wrote: > > There's a full archive of past releases of TW5 in GitHub > https://github.com/Jermolene/jermolene.github.io > > The trouble with the approach you're taking is that the host wiki needs to > accept the macro you wan

Re: [tw5] Query -- Full Historical TW Changelog?

2018-10-07 Thread Jeremy Ruston
Hi Josiah There's a full archive of past releases of TW5 in GitHub https://github.com/Jermolene/jermolene.github.io The trouble with the approach you're taking is that the host wiki needs to accept the macro you want to drop, and be able to display the results. That won't necessarily be true f

Re: [tw5] Prerelease Comments plugin Style suggestion

2018-10-07 Thread @TiddlyTweeter
Jeremy Ruston wrote: > > ... My first thought is that it might be nice if the comment plugin was > themable. > > ... I intentionally made the “add comment” button green, a colour that > isn’t part of the default TW5 palette, rather than reusing the standard > “blue” primary colour, so that the

Re: [tw5] is it possible to configure TiddlyWiki on Node.js to store tiddler files in the same directory as the wikifolder?

2018-10-07 Thread Xavier Cazin
Hi ch, I meant *to "."*, not to "..", sorry. -- Xavier On Sun, Oct 7, 2018 at 12:12 PM Xavier Cazin wrote: > Hello ch, > > Maybe you can try to set a *default-tiddler-location* configuration > option to ".." in the tiddlywiki.info file *(*see > https://tiddlywiki.com//#tiddlywiki.info%20File

Re: [tw5] is it possible to configure TiddlyWiki on Node.js to store tiddler files in the same directory as the wikifolder?

2018-10-07 Thread Xavier Cazin
Hello ch, Maybe you can try to set a *default-tiddler-location* configuration option to ".." in the tiddlywiki.info file *(*see https://tiddlywiki.com//#tiddlywiki.info%20Files) ? Regards, -- Xavier Cazin On Thu, Oct 4, 2018 at 6:33 PM ch wrote: > hi, > > this is a feature i've wanted for a

Re: [tw5] Prerelease history tab issues

2018-10-07 Thread Jeremy Ruston
Hi Dave Indeed, I think there’s another thread with a more extensive list of issues with the current design of “single tiddler mode". I haven’t had a chance to look at it for a few weeks, but I suspect that it’ll be best to push it into 5.1.19. Best wishes Jeremy. > On 6 Oct 2018, at 18:49,

Re: [tw5] Prerelease Comments plugin Style suggestion

2018-10-07 Thread Jeremy Ruston
Hi Dave That’s great. My first thought is that it might be nice if the comment plugin was themable. I’ve no objection to changing the default styling, but I think our objectives might be contradictory here. I intentionally made the “add comment” button green, a colour that isn’t part of the d

[tw5] Re: Tinka pluging: How to add readme, usage and other tiddlers

2018-10-07 Thread Mat
Mark S. wrote: > > Mat wrote: >> >> >> I'd like for documentation on this on tw.com (not just for Tinka). This >> is the second time this month I make some faulty statement on this matter >> so it would be better to have a place to point to in the tw docs. >> > > Ok, you can upvote this PR: > ht