Re: [tw] Re: TW5 So lost i need a map.

2017-08-11 Thread Arlen Beiler
Tiddler titles with spaces may either be surrounded with quotes or double
square brackets, depending on your needs.

[[My Tiddler]]

-Arlen

On Fri, Aug 11, 2017 at 4:21 PM,  wrote:

> Thanks for the info everyone.
>
> Now that i understand it better, i'm using these almost like constants.
> rather than having each macro have to determine what the data tiddler, and
> state tiddler is i define them once via the macros.
> and i am finding that being able to reference the values inside other
> macros as $(macro)$ is sometimes more flexible than <>.
>
> I'm learning that 99% of my troubles come from being unable to use
> <> inside quotes and similar issues w/ tiddler titles having spaces
> in them
>
>
>
>
> On Thursday, August 10, 2017 at 11:28:49 AM UTC-5, Mark S. wrote:
>>
>> When you use the $(variable)$ construction inside a macro, it substitutes
>> the text literally, without rendering.
>>
>> So when the #*#@&* DO things render? And how do you control it? This is
>> the kind of thing that can make you bang your head against the wall for
>> hours.
>>
>> Fortunately, we now have the <$wikify> widget. The <$wikify> widget
>> renders the text it is given, allowing a more sane programming flow. So
>> your code can now be written:
>>
>> \define myStateTid() """$:/state/$(currentTiddler)$"""
>>
>> \define buttontest2()
>> <$wikify name=hawaii text=<>>
>>   <$button set=<> setTo="edit">Press2
>> \end
>>
>> <>
>>
>> HTH
>> Mark
>>
>> On Thursday, August 10, 2017 at 7:15:50 AM UTC-7, myst...@gmail.com
>> wrote:
>>>
>>> I thought i had finally wrapped my head around the difference between
>>> $var$ and $(var)$, so i went to test it.
>>> Below is my test, and I am at a complete loss for why buttontest1
>>> renders the markup instead of the button, and why buttontest2, when
>>> pressed, creates a tiddler that is the exact markup of <>.
>>> While calling <> by itself renders as expected.
>>>
>>> Please, someone explain this to me.. perhaps using small words. :)
>>>
>>>
>>>
>>> \define myStateTid() """$:/state/$(currentTiddler)$"""
>>>
>>> \define buttontest1()
>>> <$button set="$(myStateTid)$" setTo="edit">Press1
>>> \end
>>>
>>> \define buttontest2()
>>> <$button set=<> setTo="edit">Press2
>>> \end
>>>
>>>
>>> <>
>>> <>
>>>
>>> --
> 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/de6c8088-1c18-4292-946d-c14d073be76f%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/CAJ1vdSScL%2Bm%3DuH4ayiwiCKqY1BCN1d8ncTQdmvkjcgk_RarBLA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 So lost i need a map.

2017-08-11 Thread mystikite
Thanks for the info everyone.

Now that i understand it better, i'm using these almost like constants.
rather than having each macro have to determine what the data tiddler, and 
state tiddler is i define them once via the macros.
and i am finding that being able to reference the values inside other 
macros as $(macro)$ is sometimes more flexible than <>.

I'm learning that 99% of my troubles come from being unable to use 
<> inside quotes and similar issues w/ tiddler titles having spaces 
in them



On Thursday, August 10, 2017 at 11:28:49 AM UTC-5, Mark S. wrote:
>
> When you use the $(variable)$ construction inside a macro, it substitutes 
> the text literally, without rendering.
>
> So when the #*#@&* DO things render? And how do you control it? This is 
> the kind of thing that can make you bang your head against the wall for 
> hours.
>
> Fortunately, we now have the <$wikify> widget. The <$wikify> widget 
> renders the text it is given, allowing a more sane programming flow. So 
> your code can now be written:
>
> \define myStateTid() """$:/state/$(currentTiddler)$"""
>
> \define buttontest2()
> <$wikify name=hawaii text=<>>
>   <$button set=<> setTo="edit">Press2
> \end
>
> <>
>
> HTH
> Mark
>
> On Thursday, August 10, 2017 at 7:15:50 AM UTC-7, myst...@gmail.com wrote:
>>
>> I thought i had finally wrapped my head around the difference between 
>> $var$ and $(var)$, so i went to test it.
>> Below is my test, and I am at a complete loss for why buttontest1 renders 
>> the markup instead of the button, and why buttontest2, when pressed, 
>> creates a tiddler that is the exact markup of <>.
>> While calling <> by itself renders as expected.
>>
>> Please, someone explain this to me.. perhaps using small words. :)
>>
>>
>>
>> \define myStateTid() """$:/state/$(currentTiddler)$"""
>>
>> \define buttontest1()
>> <$button set="$(myStateTid)$" setTo="edit">Press1
>> \end
>>
>> \define buttontest2()
>> <$button set=<> setTo="edit">Press2
>> \end
>>
>>
>> <>
>> <>
>>
>>

-- 
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/de6c8088-1c18-4292-946d-c14d073be76f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 So lost i need a map.

2017-08-10 Thread 'Mark S.' via TiddlyWiki
When you use the $(variable)$ construction inside a macro, it substitutes 
the text literally, without rendering.

So when the #*#@&* DO things render? And how do you control it? This is the 
kind of thing that can make you bang your head against the wall for hours.

Fortunately, we now have the <$wikify> widget. The <$wikify> widget renders 
the text it is given, allowing a more sane programming flow. So your code 
can now be written:

\define myStateTid() """$:/state/$(currentTiddler)$"""

\define buttontest2()
<$wikify name=hawaii text=<>>
  <$button set=<> setTo="edit">Press2
\end

<>

HTH
Mark

On Thursday, August 10, 2017 at 7:15:50 AM UTC-7, myst...@gmail.com wrote:
>
> I thought i had finally wrapped my head around the difference between 
> $var$ and $(var)$, so i went to test it.
> Below is my test, and I am at a complete loss for why buttontest1 renders 
> the markup instead of the button, and why buttontest2, when pressed, 
> creates a tiddler that is the exact markup of <>.
> While calling <> by itself renders as expected.
>
> Please, someone explain this to me.. perhaps using small words. :)
>
>
>
> \define myStateTid() """$:/state/$(currentTiddler)$"""
>
> \define buttontest1()
> <$button set="$(myStateTid)$" setTo="edit">Press1
> \end
>
> \define buttontest2()
> <$button set=<> setTo="edit">Press2
> \end
>
>
> <>
> <>
>
>

-- 
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/64bcffe9-584d-4570-b36d-f600ae2ae61a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.