[tw] Re: nesting double curly brackets

2017-02-27 Thread Dave
Okay, I feel like I'm banging my head against the wall - why is this not 
working?

\define s.test.result()
 <$transclude tiddler="TempTest" field="tempfield"/>
\end

\define s.test(testname,testfield)
<$set name="tests" value="testDictionary">
<$set name="subtest" value=$testfield$>
<$select tiddler="TempTest" field="tempfield">
<$list filter="[getindex[$testname$]]">
<$list filter=<>>
>><$text text=<>/>



tiddler="$testname$ Dxs" index="<$macrocall $name='s.test.result'/>" 
<$transclude tiddler="$testname$ Dxs" index="<$macrocall $name=
's.test.result'/>"/>



\end

<>


The select box thing works fine, but my problem is the difference between  and 


the "A" part correctly prints this out: 
tiddler="Lumbar Kemps Dxs" index="leg pain"

which is the guts of the transclusion I want to do, but part "B" does 
nothing, whereas outside of the macro, if I put that content in it, it 
would work correctly.

I thought maybe I'd have to have the main select option thing outside of a 
macro and just transclude that tiddler wherever I need it, but then how 
could I pass the parameters to it in that case?

Any ideas?






>

-- 
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/6d7121bb-7412-4955-a0df-f8fdbba87be1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Plugins updated: ToDoNow and Listreveal

2017-02-27 Thread Matt Groth
So happy I stumbled upon this community :) 

Thanks!

On Monday, February 27, 2017 at 12:52:18 PM UTC-5, Thomas Elmiger wrote:
>
> Hi Matt
>
> I just want to skip the listrevealButton() and have the content rendered 
>> with the rest of my tiddler content
>>
>
> That sounds reasonable :–)
>
> I have added a parameter *state* to the listrevealContent macro and the 
> plugin is updated to version 0.1.13. Your usage would be:
>
> <$macrocall $name="listrevealContent" title=<> datetime=<> 
> state="$:/your-state-tiddler-title"/> 
>
> Where *$:/your-state-tiddler-title* is the title of a state tiddler you 
> define manually or using a button of your own.
>
> As long as the text field of your state-tiddler contains the word 
> *visible* (and only this) your listreveal section(s) will be open. If the 
> tiddler contains anyting else or does not exist, they will remain closed. 
>
> Hope, that helps – have fun!
> 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/655414f4-3903-438a-a979-f6737e3f0ac1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: how do I comment inside a macro

2017-02-27 Thread Dave




On Monday, February 27, 2017 at 4:18:36 PM UTC-7, Thomas Elmiger wrote:
>
> Hi Dave
>
> You can add HTML comments at the end of your macro tiddlers. 
>
> You can show them in view mode using my extract macro and a conditional 
> view template, if you want. See 
> https://tid.li/tw5/hacks.html#Extract%20Macro
>
> Good luck!
> 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/5d46eb95-c9b8-4752-b69b-ec9b46d5052e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] how do I comment inside a macro

2017-02-27 Thread Thomas Elmiger
Hi Dave

You can add HTML comments at the end of your macro tiddlers. 

You can show them in view mode using my extract macro and a conditional view 
template, if you want. See https://tid.li/tw5/hacks.html#Extract%20Macro

Good luck!
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/edbbaff6-8e65-49ab-a7da-d7e2bbfe9c4b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: [TW5] How to create a basic plugin that bundles some content?

2017-02-27 Thread Thomas Elmiger
Hi all, 

As I was not aware of the list-after trick for CSS-tiddlers until now, I have 
used another method to overcome the effect: specifity. 
In CSS the most specific definition wins. In my cases I usually added some 
super- or middle-classes to my definition. This makes them not only win over 
less specific definitions, it adds also security to target the desired elements 
only. 

Example: Instead of 

.tc-search-drop-down a.tc-tiddlylink:hover { …

I used an additional class from a surrounding element:

.tc-sidebar-lists .tc-search-drop-down a.tc-tiddlylink:hover { …

Good night and good luck!
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/b9d7ba7b-b025-4505-857e-93070f876a64%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] how do I comment inside a macro

2017-02-27 Thread Dave
When I'm playing with macros, I find it quite mind bending following 
references all over the place, so I want to start entering my own comments 
about how things are working.

How do I do this?

I can't find anything searching for the phrase "comment" here or on 
tiddlywiki.com

I thought it was something like this

\%comment%\ (played with variations, but everything is showing up in the 
tiddler when I go to view mode)


thanks,
Dave

-- 
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/ff12ca42-078b-452b-be51-01460b92292b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: nesting double curly brackets

2017-02-27 Thread Dave
aha! index is what i was looking for - thanks!

On Monday, February 27, 2017 at 9:38:10 AM UTC-7, PMario wrote:
>
> On Monday, February 27, 2017 at 3:53:01 PM UTC+1, Dave wrote:
>>
>> I tried this to no avail:
>>
>> <$transclude tiddler="my tiddler" data="my data">
>>
>
> Hi Dave, 
> Have a look at the attribute names: index
>  
> http://tiddlywiki.com/#TranscludeWidget:TranscludeWidget%20DataTiddlers
>
> -m
>
>

-- 
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/ff42e1a4-3480-4842-8570-2143cd7119a3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] TW5 - redirect or alias macro / plugin?

2017-02-27 Thread Silvercat
I'm not a programmer so I may have missed an existing way to do this.

Is there an easy way to tell it to look for a tiddler under a different 
name? Like how wikipedia has redirects, or a couple different plugins for 
tiddlywiki classic did?

I'm trying to make a quick wiki for a podcast I follow. I'd prefer to be 
able refer to each episode either by its date (eg episode2017-02-27) or by 
its number (eg ep152). It's basically a test run before I move the info to 
wikia, so I can just do the grunt work, but I'd prefer a shortcut if there 
is one.

Thanks

-- 
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/58bbf698-eb4a-4d5f-a678-e3c8de782600%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Announcing the 2nd TiddlyWiki European Meetup on 10th & 11th June 2017

2017-02-27 Thread Sylvain Naudin
Well, I hope I'll be free this time :)

Sylvain

-- 
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/a3e14510-ecee-4083-aa36-2ce051dced00%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Presenting: PPTW - PowerPointTiddlyWiki

2017-02-27 Thread Sylvain Naudin


Le dimanche 19 février 2017 19:43:45 UTC+1, Mat a écrit :
>
> The TWaddler proudly presents
>
> PPTW 
>
> A powerpoint kinda thingy.
> ...yeah, it's not fully polished or tested. But it's a pretty simple CSS 
> construction (on top of a remarkable tool called TW) so I believe it should 
> work as expected.
> <:-)
>

Hi Mat,

Well done !
I will have a look to your CSS and see if I can adapt it to me previous 
test here (https://tw5.xyz/TiddlyPrez/) I helped a friend to create a 
presentation with TW at Paris Open Source Submit in November.

Your fullscreen background is interesting.

Cheers,
Sylvain

-- 
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/4db44918-2537-4a6d-92c3-5a83f6c8f598%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: [TW5] How to default SelectWidget to the first entry in a list?

2017-02-27 Thread Jeremy Ruston
Hi Jeff

> Hi guys:  thanks for the suggestions.  However, it seems to be not quite so 
> simple.  Simply setting the default selection in the widget doesn't seem to 
> actually activate that selection.  I assume I have to actually update the 
> text of the state tiddler being used by the widget so it activates that 
> selection.

The description of the “default” attribute of the select widget is subtle:

> Default value to be used if the tiddler, field or index specifies a missing 
> value

So, what the attribute does is provide the value to be displayed by the select 
widget if the tiddler/field/index is missing.

> I would love to just say, whichever is the first entry in the list, select 
> that by default.  

Setting the select widget to a particular value is accomplished by assigning 
that value to the tiddler field/index that is bound to the widget. So, you’d 
need to explicitly assign the right value to that field/index in order to 
select the default that you want.

Best wishes

Jeremy




> 
> -- 
> 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/8d79de82-1bf5-4526-8d8a-0ebc2a0fa135%40googlegroups.com
>  
> .
> For more options, visit https://groups.google.com/d/optout 
> .

-- 
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/88DB2FA8-32BA-4967-AF68-3C3672BC7BA6%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] How to default SelectWidget to the first entry in a list?

2017-02-27 Thread Jeff Vance

Hi guys:  thanks for the suggestions.  However, it seems to be not quite so 
simple.  Simply setting the default selection in the widget doesn't seem to 
actually activate that selection.  I assume I have to actually update the 
text of the state tiddler being used by the widget so it activates that 
selection.

-- 
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/8d79de82-1bf5-4526-8d8a-0ebc2a0fa135%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Plugins updated: ToDoNow and Listreveal

2017-02-27 Thread Thomas Elmiger
Hi Matt

I just want to skip the listrevealButton() and have the content rendered 
> with the rest of my tiddler content
>

That sounds reasonable :–)

I have added a parameter *state* to the listrevealContent macro and the 
plugin is updated to version 0.1.13. Your usage would be:

<$macrocall $name="listrevealContent" title=<> datetime=<> 
state="$:/your-state-tiddler-title"/> 

Where *$:/your-state-tiddler-title* is the title of a state tiddler you 
define manually or using a button of your own.

As long as the text field of your state-tiddler contains the word *visible* 
(and only this) your listreveal section(s) will be open. If the tiddler 
contains anyting else or does not exist, they will remain closed. 

Hope, that helps – have fun!
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/2ca71aac-9e92-452d-8bdc-c70db8c2629f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How do I indent?

2017-02-27 Thread PMario
On Monday, February 27, 2017 at 5:42:31 PM UTC+1, philosopherhobbs wrote:

Is the syntax such that I just type *.x before the text I want to indent 
> once and that should do it?
>

Right. If you use 

**.x you'll indent to level 2 and so on. 

There's also the reason why I did use x as a class name. It's short and 
fast to type. you could use i or indent ... indent if you find it easier. 
eg:

*.indent .. but more to type :)

-m

-- 
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/618330c5-9e0e-45c4-9428-ce899c5cf81e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How do I indent?

2017-02-27 Thread PMario
Hi, 

It's basically defining a new visual representation for the standard 
unordered list element [1]: it removes the bullet points. Just uses the 
indent settings: 

Create a tiddler eg: myStyles and tag it $:/tags/Stylesheet

.x li,
li.x{
  list-style-type: none; 
  padding-left: 0;
}

-

The above code is a CSS definition, that defines a new CSS class [2] 
selector named x 
It can be any name, but I wanted to have a short one.   

Now you can use the following syntax: 

*.x indent 1
**.x indent 2

If you put this little example into a tiddler, it creates this output: 


   - indent 1
  - indent 2
   

Once the stylesheet is active it removes the bullets. .. That's it. 

There is a second way to define a bigger block of text, where the rule 
should be active. Like this:

@@.x
* asdf asdf
** asdfasdfasdf 
@@

The example text above uses the TW advanced feature, to apply custom styles 
and classes [3]. As you see, we redefined the list element between @@.x and 
@@. So depending on your usecase you may use both of them. ... You'll find 
out, when to use them ;)

hope that helps

have fun!
mario

[1] http://tiddlywiki.com/#Lists%20in%20WikiText
[2] https://developer.mozilla.org/en-US/docs/Web/CSS/Class_selectors
[3] http://tiddlywiki.com/#Styles%20and%20Classes%20in%20WikiText

-- 
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/737fbd96-615c-4c03-83a9-4aaffab24999%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: [TW5] How to create a basic plugin that bundles some content?

2017-02-27 Thread PMario
On Monday, February 27, 2017 at 5:11:25 PM UTC+1, TheDiveO wrote:
>
> .. booster in CSS declarations as another resort.
>

IMO the absolutely last resort. Have a look at this talk. It explains why 

.

-m 

-- 
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/febb6f06-2efa-4d77-8bc1-fb9d4dbb16bb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How do I indent?

2017-02-27 Thread 'philosopherhobbs' via TiddlyWiki
PMario, can't get this solution to work and it would be the most 
elegant/readable one I've found. Created the tiddler and tagged it but I'm 
not sure what I'm tagging. So far as I know, I have no tiddler named 
Stylesheet (again, I'm new to tiddlyWiki so it may be hidden somewhere I'm 
unaware of or maybe I'm supposed to create it).

Is the syntax such that I just type *.x before the text I want to indent 
once and that should do it?

Thanks for your help!

On Monday, February 27, 2017 at 2:22:14 AM UTC-6, PMario wrote:
>
> hi,
>
> have a look here: 
> https://groups.google.com/d/msg/tiddlywiki/loz80ybEoqo/9Q25Wa_DCQAJ
>
> -m
>

-- 
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/8c305cfc-f3db-451d-9c11-ec04a084973c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TW5] Broken code block word wrapping in transcluded tiddler with vertical tabs.

2017-02-27 Thread Jeff Vance
By chance, I found a specific scenario that seems to break word-wrapping 
when transcluding tiddlers into tabs.  I wonder if this is a TW bug. It 
specifically happens with a code-block that contains long dashed lines.   
It's very easy to recreate with the following:

1. Create a tiddler with a single code block like this:

```
--
```



2. Transclude that tiddler into a tab (must be vertical)

<$macrocall $name="tabs"
  tabsList="[title[TEST TIDDLER]]"
  state="$:/state/test"
  class="tc-vertical"
/>


Then select the tab, and shrink the browser width. The transcluded version 
does not word-wrap, but the original tiddler does!  Also, I noticed it only 
happens if the it is using class="tc-vertical".  When reverting to 
horizontal tabs, the word-wrap works!


It's not a huge deal since it's a fairly rare scenario, but I thought I 
should point it out. Maybe it's something someone would want to fix.

-- 
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/d76bc2bb-1784-4bba-91eb-0363ca2a87a3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: nesting double curly brackets

2017-02-27 Thread PMario
On Monday, February 27, 2017 at 3:53:01 PM UTC+1, Dave wrote:
>
> I tried this to no avail:
>
> <$transclude tiddler="my tiddler" data="my data">
>

Hi Dave, 
Have a look at the attribute names: index
 
http://tiddlywiki.com/#TranscludeWidget:TranscludeWidget%20DataTiddlers

-m

-- 
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/80a43798-3e1a-4be7-aaa9-495d994b678c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How do I indent?

2017-02-27 Thread 'philosopherhobbs' via TiddlyWiki
The   works even though it's hard to read for later editing. The ":" 
just shows up as text on the other side. Finally, http://tiddlywiki.com/#Definitions%20in%20WikiText> - basically just 
> write a ":" before the line.
>
> Other options include writing multiple   to get a no-break-space 
> character.
>
> You could probably also insert a   ...or 
> with a margin-left:3em; 
>
> etc etc
>
> <:-)
>
>
> On Monday, February 27, 2017 at 6:23:43 AM UTC+1, philosopherhobbs wrote:
>>
>> Greetings,
>>
>> I'm new to tiddlywiki and enjoying it for the most part, but I can't for 
>> the life of me find a way to insert spaces or indentation into a tiddler. 
>> Is there a straight-forward way to do this? If not, why? Isn't indentation 
>> a basic function of anything involving typing?
>>
>> I have found on wikiMatrix the supposed syntax for indenting some text 
>> but it doesn't work. It lists ':indent' but it doesn't do anything so far 
>> as I can tell. The command for quotes and block quotes add unnecessary 
>> fluff to indentation. Why does TiddlyWiki have a pseudomethod of 
>> indentation that adds a bar when indentation is all that is needed for 
>> quotes and to do...normal indentation stuff.
>>
>> Truly puzzled about this. TiddlyWiki added easy ways to italicize, 
>> underline, etc. Isn't indentation just as important in word processors as 
>> those functions? It provides an easy way to space things.
>>
>> Thanks for any help!
>>
>

-- 
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/616ed3f7-de47-47b0-9304-60dc08978e60%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: [TW5] How to create a basic plugin that bundles some content?

2017-02-27 Thread TheDiveO
 In case you can't live with the dependeny on a specific theme, you can try 
to use the "!important" booster in CSS declarations as another resort.

-- 
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/6e5bbc87-35be-45a6-ae80-adf8b096f351%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Plugins updated: ToDoNow and Listreveal

2017-02-27 Thread Matt Groth
Hi Thomas,

Listreveal works well and also looks great. Thank you so much!

I want to adapt your code a little bit for my needs, but I'm having trouble 
and was wondering if you could help.

I just want to skip the listrevealButton() and have the content rendered 
with the rest of my tiddler content. I'm sure I can figure out the other 
small changes I want on my own, but getting the macro to work without the 
button is something I think I could use some help in. So far all my 
attempts at bypassing the button are just causing everything to disappear. 

Best,
Matt

On Friday, February 24, 2017 at 6:49:34 PM UTC-5, Thomas Elmiger wrote:
>
> Hi all
>
> Just a short note, most of all to Josiah who contributed a lot of ideas 
> and testing: My plugins are updated (and still worked in a first test). 
>
> ===
>
> *Listreveal*
> For my lists of tiddlers I made a special tool *listreveal* that
> a) lets you open listed tiddlers and see their tags and other details 
> (similar to the new tiddler manager but simpler)
> b) lets you add tags based on all tiddlers in the list with two clicks 
> (only suggestions, no input field) or remove tags from the tiddler
>
> ===
>
> *ToDoNow*
> Building up on lists from Listreveal I made this simple but effective 
> ToDo-App. Here’s what Josiah said about this 
> 
>  
> (thank you!): 
>
> I think its worth saying WHY it is good. #GTD functional design is not as 
>> easy as it first might look. What you really got right on this, for this 
>> specific type of GTD, IMO, is ..
>>
>>1. Clear, uncluttered, interface that gives an immediate OVERVIEW.
>>2. IN SITU TOOLS. In-line editing, deadline assignment & click 
>>prioritisation.That is so good because tasks stay in full CONTEXT.
>>3. Simple THREE SECTIONS (ActionNow, Tasks, Finished) with easy 
>>transfer between them
>>4. Overall SIMPLICITY & EFFICIENCY of functional use.
>>
>> ===
>
> After some major refactoring both plugins come with new features, short 
> readmes and with some new CSS-classes. 
>
> *As always: remember to back up your wikis before you try my stuff.*
>
> And as always you can find them here: 
> http://tid.li/tw5/plugins.html#Get%20More%20Plugins – and as always 
> feedback ist highly appreciated!
> (There are still some ideas from Josiah on my development todo list, but 
> please don’t hold your comments back.)
>
> Have a nice weekend!
> 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/7eea2fac-d0ea-45aa-878a-009859556fbc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: nesting double curly brackets

2017-02-27 Thread Dave
Thanks Jed, I'll take a look at that.

In the meantime, what's the code to transcode from a data tiddler?

I tried this to no avail:
<$transclude tiddler="my tiddler" data="my data">

I also tried "value"

I just couldn't find any reference to anything besides the curly bracket method

-- 
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/2d3a0624-39cd-44c8-8cab-ba517afd2f93%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: [TW5] How to create a basic plugin that bundles some content?

2017-02-27 Thread Jeff Vance
Thanks Ton!  That was exactly the problem.  The vanilla style was being 
applied after mine.  I added the list-after field and it works now.

Cheers,
Jeff

-- 
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/b48a34c0-d86b-4404-a248-d5f1d37bc960%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: [TW5] How to create a basic plugin that bundles some content?

2017-02-27 Thread Ton Gerner
Hi Jeff,

The ordering of all stylesheets can be of importance in case you want to 
overwrite styles.

$:/core/ui/PageStylesheet (the main stylesheet) uses:

<$list filter="[all[shadows+tiddlers]tag[$:/tags/Stylesheet]]"/>

To test it, go to the filter tab in Advanced search and enter the following 
as a filter:

[all[shadows+tiddlers]tag[$:/tags/Stylesheet]]

This will give you the order in which the stylesheets will be processed.

With help of a list-after field in your stylesheet, you can rearrange the 
order, e.g. a list-after field containing $:/themes/tiddlywiki/vanilla/base 
will process your stylesheet after $:/themes/tiddlywiki/vanilla/base so to 
overwrite 'vanilla' styles.

Cheers,

Ton



-- 
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/204ad138-a03c-40a1-bcfc-53fddad1bba6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: [TW5] How to create a basic plugin that bundles some content?

2017-02-27 Thread Jeff Vance
Hi Andreas,

Thanks for the explanation of the shadow tiddler transformation, however I 
think there is something more going on here that is messing up the 
stylesheet.  Not only did I make sure to save and refresh after creating 
the plugin, I also downloaded a fresh empty TW and copied the plugin over 
to it, then saved and refreshed.  Looking more closely, it looks like only 
some of the stylesheet changes are applied and some aren't.  For example, 
see below for a sample of some of the changes.  The heading font change is 
actually being applied. However the other 2 are not (changing site title 
color and removing borders around inline code).  What's even more strange 
to me is if I then simply clone the stylesheet tiddler and save it (without 
making any other changes to it), everything suddenly works.

h1, h2, h3, h4, h5{font-family: "Trebuchet MS";}
.tc-site-title {color: #ff6600;}

code {
border-radius: 0;
border: 0;
background: transparent;
}


-- 
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/e2cf33dd-08cb-4298-a2bb-edc7d15ec12d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How do I indent?

2017-02-27 Thread Ton Gerner
Hi,

Stephen Kimmel made an editor toolbar button for it, see 
http://skplugins.tiddlyspot.com/#Indent

Cheers,

Ton

-- 
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/bdcd49a2-2811-46f1-bcd8-4b7d0ea84a2f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: nesting double curly brackets

2017-02-27 Thread Jed Carty
You can do this using a helper macro. I have some things written about it 
here 


-- 
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/0524743b-7704-4e7b-88da-09b93453574e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] How to create a basic plugin that bundles some content?

2017-02-27 Thread Jed Carty
I have a bundle tiddlers widget I made to do exactly this. It is part of 
twederation but I am split it off into its own plugin and just uploaded the 
demo wiki to http://ooktech.com/TiddlyWiki/TiddlerBundles/

The code will be up on GitHub in a minute.

-- 
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/fe3c7966-dcaf-4184-b4a9-ecd053864abd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How do I indent?

2017-02-27 Thread PMario
hi,

have a look here: 
https://groups.google.com/d/msg/tiddlywiki/loz80ybEoqo/9Q25Wa_DCQAJ

-m

-- 
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/0b1c815b-bf1d-4c04-ab0e-eb16b55fd7af%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.