[twdev] Re: Special formatting of a tiddler with a specific tag

2018-12-09 Thread Mohammad Rahmani
Eric, Your solution is always with full description, thank you! -Mohammad -- You received this message because you are subscribed to the Google Groups "TiddlyWikiDev" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[twdev] Re: Special formatting of a tiddler with a specific tag

2018-12-09 Thread joearms
Thank you very much Eric, comments in-line Cheers /Joe On Sunday, 9 December 2018 17:05:02 UTC+1, Eric Shulman wrote: > > On Sunday, December 9, 2018 at 2:27:51 AM UTC-8, joearms wrote: >> >> I want to format tiddlers with a specific tag in a particular way. >> >> I have made...a tiddler

[twdev] Re: Special formatting of a tiddler with a specific tag

2018-12-09 Thread Eric Shulman
On Sunday, December 9, 2018 at 2:27:51 AM UTC-8, joearms wrote: > > I want to format tiddlers with a specific tag in a particular way. > > I have made...a tiddler called test_formatting with tag > $:/tags/ViewTemplate > and content... When I do this the text of the tiddler 1 is rendered twice >

[twdev] Re: Is there an english high level description of how wiki text ends up as HTML?

2018-12-09 Thread coda coder
You might take a look in here... https://tiddlywiki.com/dev/ On Sunday, December 9, 2018 at 7:12:06 AM UTC-6, joearms wrote: > > I'd like an overview of how wikitext ends up as HTML > > 1) macros are expanded > > > ?) html is output > > or is it > > 1) wikitext is parsed > > > etc. >

[twdev] Is there an english high level description of how wiki text ends up as HTML?

2018-12-09 Thread joearms
I'd like an overview of how wikitext ends up as HTML 1) macros are expanded ?) html is output or is it 1) wikitext is parsed etc. I have no idea - is this documented somewhere? In particular, how is the interaction with 'magically named tiddlers' managed. I am aware that giving

[twdev] Re: Special formatting of a tiddler with a specific tag

2018-12-09 Thread joearms
On Sunday, 9 December 2018 12:17:28 UTC+1, TonyM wrote: > > joe, > > I don't follow the whole story here, but you should only see this twice in > the tiddler that is tagged viewtemplate, any other tiddler that has the tag > should only show it once. > That's what I thought :-) The enclosed

[twdev] Re: Special formatting of a tiddler with a specific tag

2018-12-09 Thread TonyM
joe, I don't follow the whole story here, but you should only see this twice in the tiddler that is tagged viewtemplate, any other tiddler that has the tag should only show it once. The view templated tiddler shows its content and itself as a result of the view template. So you see it twice.

[twdev] Special formatting of a tiddler with a specific tag

2018-12-09 Thread joearms
I want to format tiddlers with a specific tag in a particular way. I have made two tiddlers 1) called mod:lists:reverse:2 With tag 'erlang_code' and content %% reverse a list reverse([], L) -> L; reverse([H|T], L) -> reverse(T, [H|L]). 2) a tiddler called test_formatting