[tw5] Generic listing template

2018-10-27 Thread j3d1h
Another strange one, and again about variables. I'm trying to make a 
generic template that outputs two lists, kind of like this (assuming the 
tiddler's title is Foobar):

<>

<>

Except, since this is general, it has to automatically put Foobar in. I 
know there's a <> variable, but not how to use it there. I 
would use the answer to my last question, except there are other parts to 
the filter, like the colon in that regexp. It doesn't seem to work. I also 
tried \define calls (did literally nothing), throwing together a macro that 
takes the tiddler name as an input (technically worked, but I don't want to 
have to do <>, only <>), and a few others. I'm not sure 
what to do here.

I probably missed some of the documentation, again, but I can't find 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.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/409e9048-671a-4dc5-abf2-1d91d019abbe%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: How can I use <> inside a filter?

2018-10-19 Thread j3d1h
...Oh. Yeah, I probably missed part of the documentation. Thank you, that's 
perfect! :)

-- 
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/10efb855-1ed1-4a02-8993-95da3fa16382%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] How can I use <> inside a filter?

2018-10-19 Thread j3d1h
I'm trying to list (with list-links) everything tagged with "Tag" that also 
begins with the current year and month (specifically in the format 
".0MM."). I can kind of do this, with this line:

<>

Which works, but I don't want to hardcode the prefix part. I know I can use 
"<>" to automate it, but I can't seem to get prefix to take 
now as input. The regexp filter works, kind of, but I can't think of 
anything except allowing digits. Anything I'm missing? (Maybe list-links 
and filters aren't quite right for this?)

-- 
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/7d66a5b4-b99e-4ea8-87a9-0a9dea0656eb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Download a Tiddler Using Python/Bash

2018-05-24 Thread j3d1H
Matthew Lauber: Sorry for getting back to you so late, but this works 
perfectly for what I need! Thank you.

On Friday, May 18, 2018 at 11:28:05 AM UTC-4, Matthew Lauber wrote:
>
> I don't think there's really anything else someone's made.  You can try to 
> do HTML munging using BeautifulSoup in python.  Should be able to use 
> something like:
>
> with open("NameOfFile.html") as f:
>  soup = BeautifulSoup(f.read(), "html.parser")
>
>
> soup.find_all('div', attrs={'title': 'NameOfTiddler'})
>
> That'll get the the Div that represents the tiddler, but you'll have to 
> figure out how to parse it.  And it relies on BeautifulSoup4, which you can 
> get with 
> pip install beautifulsoup4
>
>
>
>
> On Friday, May 18, 2018 at 8:20:29 AM UTC-4, j3d1H wrote:
>>
>> Jed: I would really rather not use node, it hasn't worked very well for 
>> me in the past. Any other possible solution?
>>
>

-- 
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/21274ca1-31b4-426c-af0e-cdac9bfdc0aa%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Download a Tiddler Using Python/Bash

2018-05-18 Thread j3d1H
Jed: I would really rather not use node, it hasn't worked very well for me 
in the past. Any other possible solution?

-- 
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/16c06d0d-7768-4f90-b8d5-7b864eca03f8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Download a Tiddler Using Python/Bash

2018-05-17 Thread j3d1H
Maybe a little off-topic, sorry. I want to use Python and/or Bash to copy a 
single tiddler from the TiddlyWiki file to a different file. Any clues on 
how to do this?

I would attempt to parse the file for the correct tiddler, but I would 
prefer not to do that, if there's a simpler way. It seems like it would be 
hard to do. I need to do this in a script, so I can't click "export 
tiddler".

Any help is appreciated!

-- 
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/a649b200-fb3b-4cd5-a30d-dedbbbf91620%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Can you make a sidebar tab sorted by the date shown in the title?

2018-03-06 Thread j3d1H
Thank you, Riz! That works perfectly!

-- 
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/1b7fafbd-f055-432c-8f03-1fac3bdbd7dd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Can you make a sidebar tab sorted by the date shown in the title?

2018-03-05 Thread j3d1H
PMario: I really don't want to have to change how the titles actually look 
(personal preference, sorry), so is there a different way to do it? It 
would be nice for it to just work, but that's not necessarily what I'm 
looking for.

-- 
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/20d70386-d300-4a26-8058-416986c474b2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Can you make a sidebar tab sorted by the date shown in the title?

2018-03-03 Thread j3d1H
I have a lot of tiddlers that start with a date in the format */MM/DD*, 
and I want a tiddler that will sort and show these tiddlers not by when 
they were created, nor edited, but the date they show in the title. These 
tiddlers will always start with the date, and always in that exact format. 
Does anyone know how to do this?

Note: I have looked, and found this 
 and this 
, but I 
think they're not quite what I'm trying to do. I don't want to use tags or 
anything, just the title. I'm sorry if this is spam - I haven't found 
anything I thought I could use!

Thank you for any help offered.

-- 
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/ed4278a9-4778-46c1-b466-d1186201a2de%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Line numbers for Tiddler body/editor?

2018-01-26 Thread j3d1H
Can I get line numbers for my Tiddler editor and body, but nowhere else? 
Not in the sidebar tabs, or title, or anything - just the Tiddler editor 
and body?

(I've looked, without success.) Any help is appreciated!

-- 
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/b8c34309-60ee-4ac9-8441-5a8529364355%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: KaTeX does not do what I need

2018-01-14 Thread j3d1H
I did what you said before, but now it works. I guess it was a matter of 
waiting - thank you!
>
>

-- 
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/5f42f7f2-8461-429e-97df-9112e9e419cc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: KaTeX does not do what I need

2018-01-13 Thread j3d1H
Diego Mesa: I was trying to use \overrightarrow{AB}.

Ste Wilson: That is the site I was talking about.

Jeremy Ruston: I must have just barely missed it, because that's the site I 
looked at, and it didn't work there either. I have tried installing it on 
my wiki, and it worked.. but now it won't. When I drag the plugin's link to 
my wiki, even after fully uninstalling KaTeX, the links to the plugin 
itself won't work, and if I import those, the plugin does nothing. Did I 
break something?

-- 
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/2f553e7f-f6af-468f-9288-174f70de3635%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] KaTeX does not do what I need

2018-01-12 Thread j3d1H
I'm trying to write in KaTeX, specifically the symbol for a ray. However, 
in both my wiki and the actual plugin page, it doesn't work. I don't think 
it works on Khan Academy's GitHub page either. Has something changed? And, 
if I cannot use this, what else can I use to write the symbol for a ray, or 
things like that?

(I'm new to this plugin, and LaTeX in general. Maybe this never worked, or 
it changed a long time ago - I'm not quite sure.)

Any help is appreciated!

-- 
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/bbfbb2d5-af63-4c07-9cc4-748a530cafc1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TiddlyWiki slows when using 10,000 or more word Tiddlers

2017-12-12 Thread j3d1H
I've figured out it isn't the plugins or extensions that was the problem - 
I took those off, and I moved the problem Tiddler to an empty TiddlyWiki. 
It's still just as slow to edit.

I'm planning on trying It's All Text, since I was going to anyway.

-- 
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/b14d52c2-71de-4f25-94e3-89a58cb30616%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TiddlyWiki slows when using 10,000 or more word Tiddlers

2017-12-12 Thread j3d1H
Thank you all for your responses. 

I do not have any tiddlers so large, but using Firefox ESR I have 
> experienced breakdowns when TiddlyWiki slows to the point of being 
> unresponsive. Quite a few times ending up with a ruined tiddlywiki (0 file).
>
 
I've had hiccups like that on several versions of Firefox before. It turns 
out, ESR is my problem.

So can you have a closer look at the plugins you use?
> Did you make heavy changes to the View- or EditTemplates?
>

   - Danielo's footNote add-on
   - Highlight.js plugin
   - A single filter in $:/core/macros/timeline
   - No changes to View and EditTemplates

Which font did you embed and how?  
> How big are the font files?
> Is the font embedded into the TW?


Input Font, embedded base64 encode stylesheet, 115KB
 

>  -* Create a backup*
>  - Throw out the font from the TW if it is embedded.
>  - test again
>
>  - Install the font on the OS ... Only makes sense, if you are the only 
> one, who wants to see the real beauty of your TW ;)
>  - test again. 


I've tried these. It does not improve the performance.

I’d concur that the problem is unlikely to be a simple matter of the number 
> of words in the wiki.
>
> For comparison, I’m working on a project for a client to convert a 25MB 
> Microsoft Word file into TiddlyWiki. It contains 14,800 pages, 6,300 
> paragraphs, 8,580,000 words and 46,000,000 characters (not counting spaces).
>
> Converting it into a TiddlyWiki yields a 55MB HTML file. On my five year 
> old Mac, performance is astonishingly good: it loads in less than 5 
> seconds, and I can search the entire file in less than 5 seconds.
>
> In contrast, typing a single character into the Word document takes about 
> 10 seconds to update the screen…
>

Load time is good. Search time is excellent. This is primarily an issue 
editing a large tiddler. Opening and saving the large tiddler has a bit of 
a pause, but typing in the editor has a ~3 second delay. That much delay 
makes takes me out of my writing flowstate.

Just for the record, what platform, OS, and hardware are we talking about? 
> What is the actual size of your TW?
>
> TW is not indexed, meaning that it scales with the hardware it is on.


For the record: E3 Xeon, 16GB RAM, 750Ti, Ubuntu 16.04, Firefox ESR, 10MB 
wiki. 

So, I grabbed Chromium, and I have zero performance problems on it. Damnit!

The only reason I'm using ESR is because I love some of my extensions, 
including Tiddlyfox. I can't escape the Firefox Apocalypse. =( I guess I'll 
be moving to Quantum w/savetiddlers + syncing/linking the updated wiki file 
to the directory it belongs. Anyone have a sync or linking method that they 
love for this?






-- 
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/afe9fe29-5833-4a45-97b7-ba49edf09c35%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] TiddlyWiki slows when using 10,000 or more word Tiddlers

2017-12-11 Thread j3d1H
When I use a Tiddler with 10,000 words in it (opening it, changing it, 
etc.), TiddlyWiki slows to the point of being unresponsive. I do have a 
very large Wiki file, is that the problem?

I use Firefox ESR, I've got a font embedded, I've tweaked the theme, and I 
have a few addons.

I'm happy to give more details if needed, and thank you for any answers!

-- 
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/c805a8b6-e9c2-4002-af1f-2a772784cf2a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Can you make a "What links to this" section of a tiddler?

2017-12-08 Thread j3d1H
That works perfectly! Thank you.

-- 
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/12eb2d94-f58f-4c00-861a-871d5722d435%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Can you make a "What links to this" section of a tiddler?

2017-12-08 Thread j3d1H
That works very well, but is there a way for me to put this into the 
tiddler itself? Maybe a transclusion, or changing the ViewTemplate?

On Thursday, December 7, 2017 at 3:43:13 PM UTC-5, Diego Mesa wrote:
>
> Hey j3d1H,
>
> I think this behavior is provided by the "References" tag of the "Info 
> pane" on each tiddler. Ive attached 2 screen shots to help you find an 
> example on tiddlywiki.com
>
>
>
> On Thursday, December 7, 2017 at 2:34:10 PM UTC-6, j3d1H wrote:
>>
>> This is exactly what I want, right here 
>> <http://rumkin.com/tools/tiddlywiki/#WhatLinksHerePlugin>, but it 
>> doesn't seem to work with updated TiddlyWiki, as far as I can tell.
>> Is there a newer version, or a way to update the code? I'm also open to 
>> replacements, as long as they do the same thing. Tag-based is also fine.
>> Again, I'm happy to hear any answer!
>>
>

-- 
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/b2dca732-320b-4b2f-822e-8cb7e7831bee%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Can you make a "What links to this" section of a tiddler?

2017-12-07 Thread j3d1H
This is exactly what I want, right here 
, but it doesn't 
seem to work with updated TiddlyWiki, as far as I can tell.
Is there a newer version, or a way to update the code? I'm also open to 
replacements, as long as they do the same thing. Tag-based is also fine.
Again, I'm happy to hear any answer!

-- 
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/4e6ffdac-0e3c-4aa7-afaf-0bad1400f210%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Is it possible to make a new menu button to open a specific tiddler?

2017-06-26 Thread j3d1H
Thank you, both of you! I found what I needed :)

On Sunday, June 25, 2017 at 6:18:10 PM UTC-4, Mark S. wrote:
>
> I think this should list most, if not all available at tiddlywiki.com :
>
> <$list filter="[all[tiddlers+shadows]prefix[$:/core/images]sort[]]">
> <$transclude mode="inline"/> <$link><$view field=title/>
> 
>
> The name is the tiddler title, given as link
>
> HTH
> Mark
>
> On Sunday, June 25, 2017 at 2:20:44 PM UTC-7, j3d1H wrote:
>>
>> Thank you, Ton Gerner! This works just as I wanted, and is more 
>> customizable than I was thinking it would be! However, I'd like to know how 
>> I can browse the icons to find one I like, and the code name for it.
>>
>> On Sunday, June 25, 2017 at 6:05:29 AM UTC-4, Ton Gerner wrote:
>>>
>>> Hi,
>>>
>>> Create a tiddler, tagged with $:/tags/PageControls, containing:
>>>
>>> <$button to="TiddlerToGoTo" tooltip="Tooltip" class="tc-btn-invisible">
>>> {{$:/core/images/right-arrow}}
>>> 
>>>
>>> Adjust TiddlerToGoTo, Tooltip, and icon (here $:/core/images/right-arrow) 
>>> to your liking.
>>>
>>> For more information about customization, see my guide Customization of 
>>> TW5 <http://tw5custom.tiddlyspot.com/>
>>>
>>> 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/218e4f01-7b9f-4140-9786-887900dc75df%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Is it possible to make a new menu button to open a specific tiddler?

2017-06-25 Thread j3d1H
Thank you, Ton Gerner! This works just as I wanted, and is more 
customizable than I was thinking it would be! (If you like, you can mark 
this as complete - I can't or at least don't know how.)

On Sunday, June 25, 2017 at 6:05:29 AM UTC-4, Ton Gerner wrote:
>
> Hi,
>
> Create a tiddler, tagged with $:/tags/PageControls, containing:
>
> <$button to="TiddlerToGoTo" tooltip="Tooltip" class="tc-btn-invisible">
> {{$:/core/images/right-arrow}}
> 
>
> Adjust TiddlerToGoTo, Tooltip, and icon (here $:/core/images/right-arrow) 
> to your liking.
>
> For more information about customization, see my guide Customization of 
> TW5 
>
> 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/2c338fa9-58f5-49c6-8991-715226d14950%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Is it possible to make a new menu button to open a specific tiddler?

2017-06-24 Thread j3d1H
I mean to say, in the way the gear button opens up the control panel. For 
instance, I click it, and it opens up an "About" page. (I'm trying to make 
this work with this question that I asked 
.) Like, I 
click an icon (the ones above the search bar), and it opens up a tiddler 
that has whatever I want in it. It needs nothing else really, just the 
tiddler.

-- 
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/d311d911-678d-4f14-8e99-d513f65b1387%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Can I have a "Cancel character" for all TW formatting? (TW5)

2017-06-20 Thread j3d1H
Hmm.. that's code, which kind of works, but I don't want it monospace or 
outlined or anything, and I already use code...

-- 
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/0dfc11ca-1e48-429d-bc79-3d2ad8ab2fdf%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Can I have a "Cancel character" for all TW formatting? (TW5)

2017-06-19 Thread j3d1H
Mm, ok. I'll try.
I want a key that does this: (let's assume I modify ~ to do what I want)

Editor:

~*test

Shows as:

*test

Instead of:


   - test
   

On Monday, June 19, 2017 at 1:17:26 AM UTC-4, PMario wrote:
>
> Hi j3diH,
>
> ... It's probably easier, if you describe in more detail, what you want to 
> achieve. 
>
> If you are brave try this, if it fits your needs:
>
> *Attention*: Messing with the parsing rules can "brick" your TW. ... So 
> BACKUP first :) 
> If you messed up your TW: There is a "safe-mode 
> " that should help too.
>
> You can disable every parsing rule in the "ControlPanel 
> : Info: Advanced: Parsing"  
> tab. You need to save and reload, that changes take effect. 
>
> have fun!
> mario
>

-- 
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/b547f1b2-87e4-4667-86dd-bf6a92bde911%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Can I have a "Cancel character" for all TW formatting? (TW5)

2017-06-18 Thread j3d1H
I know that the tilde works, but for anything other than CamelCase, it 
shows the tilde as well. Can I change this, or (better yet) get a different 
character to do something similar while hiding itself? I would prefer to 
change the tilde's function, but anything that works is good.

-- 
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/ca07d27e-e707-453c-9574-f278160f370d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Can I put a "pin" button on my tiddlers?

2017-06-05 Thread j3d1H
Oh, I just realized, I think TiddlyFox wasn't working XD
Thanks! This is what I need.

On Saturday, June 3, 2017 at 1:22:37 PM UTC-4, Ton Gerner wrote:
>
> Hi,
>
> It is a plugin, so you can disable it (Controlpanel > Plugins).
> You can even make a button to enable/disable the plugin; for an example 
> see here 
> 
> .
>
> 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/7331bf8c-2d6b-4a56-b897-820f29374d30%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Can I put a "pin" button on my tiddlers?

2017-06-03 Thread j3d1H
*Absolutely* love it, except for one thing: I need to turn off the thing 
where it downloads the file every time I save. Where can I do that?

On Saturday, June 3, 2017 at 8:07:40 AM UTC-4, Ton Gerner wrote:
>
> Hi,
>
> Have a look at James Anderson's twpin .
> And some more background info at 
> https://groups.google.com/forum/#!msg/tiddlywikidev/TM2eV9fwLio/Vpff7ziTIDYJ
>
> 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/302de75b-da31-4b2b-8057-5dc6783e8357%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Can I put a "pin" button on my tiddlers?

2017-06-01 Thread j3d1H
I want to have a little pin button next to the rest of my tiddler icons 
that I can basically use to protect it from the "Home" button (I view the 
Home button as a cleanup button, to clear up tiddler clutter), but without 
setting it within the tiddler. So, it isn't *always* pinned, it is only a 
pinned tiddler *if I click the button*. It should then just stay open when 
I click the Home button. I seem to be shooting for the stars with this, 
especially as I want it to change when I click it, telling me whether or 
not it's pinned. Good luck! :D

(Sorry if I seem like I'm repeating myself, but I've been misunderstood in 
my questions before, so I'd like to clarify the **Frak** outta this.)

-- 
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/bfceedd1-bf5e-4c6c-a650-491e577283dc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Where can I configure highlightdemo to change the colors on it?

2017-05-31 Thread j3d1H
Well, for anybody who doesn't have the answer, and wants it, you need to 
change hex codes in $:/plugins/tiddlywiki/highlight/styles, and it's trial 
and error from then on. Just change the codes until you like what you see!

-- 
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/493c8d07-0cd4-44de-b4dc-228e1d101ac8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Is it possible to put the sidebar buttons at the top?

2017-05-31 Thread j3d1H
I would say that's a very good idea. A search bar would be nice, but if 
that's not an option, we can always put the "Advanced search" button on 
there.

On Thursday, May 25, 2017 at 10:37:21 AM UTC-4, @TiddlyTweeter wrote:
>
> Ciao Matthew 
>
> The minimalism of that solution is really excellent, IMO. I think it 
> would have great relevance to smartphone usage, in addition to people like 
> me who like screen estate on desktops. 
>
> I like the way its done because it reflects the "meaning of the sidebar", 
> rather than be a full-on alternative, if you get what I mean? 
>
> The only thing that might be useful to add would be a (optional?) search 
> box?
>
> Best wishes
> Josiah
>
> On Wednesday, 24 May 2017 19:40:52 UTC+2, Matthew Lauber wrote:
>>
>> Here you go.  Whatever buttons you show in the sidebar when it's open 
>> will show up in the topbar when it's closed.
>>
>

-- 
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/3905bf2a-fd3e-4ad0-a730-4a9ea43ca3a3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Is it possible to put the sidebar buttons at the top?

2017-05-24 Thread j3d1H
Thank you, Matthew Lauber! This is exactly what I wanted.

On Wednesday, May 24, 2017 at 1:40:52 PM UTC-4, Matthew Lauber wrote:
>
> Here you go.  Whatever buttons you show in the sidebar when it's open will 
> show up in the topbar when it's closed.
>
> created: 20170524173725525
> modified: 20170524173926916
> tags: $:/tags/TopRightBar
> title: $:/core/ui/TopBar/menu
>
> \define config-title()
> $:/config/PageControlButtons/Visibility/$(listItem)$
> \end
>
> <$reveal state="$:/state/sidebar" type="nomatch" text="no">
> <$button set="$:/state/sidebar" setTo="no" 
> tooltip={{$:/language/Buttons/HideSideBar/Hint}} 
> aria-label={{$:/language/Buttons/HideSideBar/Caption}} 
> class="tc-btn-invisible">{{$:/core/images/chevron-right}}
> 
> <$reveal state="$:/state/sidebar" type="match" text="no">
> <$list 
> filter="[all[shadows+tiddlers]tag[$:/tags/PageControls]!has[draft.of]]" 
> variable="listItem">
> <$reveal type="nomatch" state=<> text="hide">
> <$transclude tiddler=<> mode="inline"/>
> 
> 
> <$button set="$:/state/sidebar" setTo="yes" 
> tooltip={{$:/language/Buttons/ShowSideBar/Hint}} 
> aria-label={{$:/language/Buttons/ShowSideBar/Caption}} 
> class="tc-btn-invisible">{{$:/core/images/chevron-left}}
> 
>
>
>
>
> On Wednesday, May 24, 2017 at 10:41:35 AM UTC-4, j3d1H wrote:
>>
>> I'm not sure this can be done, but is there a plugin or something I can 
>> change to make a scrolling top bar that has the sidebar buttons on it? 
>> Like, the save button, the full-screen button, control panel button, all of 
>> those would be on the top, and they scroll with me as I scroll down the 
>> story river?
>>
>> I would also prefer it if the sidebar buttons returned to the sidebar if 
>> I open it, and the sidebar is as normal. Thanks in advance for anyone who 
>> tries and/or succeeds to 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/75d76686-93d6-4a60-a7e9-b3719193081d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Erroneous Link Creation

2017-05-24 Thread j3d1H
You can also, if you want this for more than CamelCase, turn off a setting 
which makes it so that any links to tiddlers that don't exist are not 
links, but rather plain text.

-- 
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/36d4df0c-ba02-4f92-9cd1-0d51295f9beb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Is it possible to put the sidebar buttons at the top?

2017-05-24 Thread j3d1H
I'm not sure this can be done, but is there a plugin or something I can 
change to make a scrolling top bar that has the sidebar buttons on it? 
Like, the save button, the full-screen button, control panel button, all of 
those would be on the top, and they scroll with me as I scroll down the 
story river?

-- 
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/f9247f53-6d9c-4e20-ace8-65d7f62272d0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Can I have a word counter for the words in the entire TW?

2017-05-19 Thread j3d1H
Yes, that is absolutely correct, Danielo. Thank you for helping clarify 
what I meant by my question. :)

On Sunday, May 14, 2017 at 8:00:47 AM UTC-4, Danielo Rodríguez wrote:
>
> What j3d1H wants is some global info tiddler with a count of all words. 
> Ideally with details about each word appearance. Am I right ?

-- 
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/9767c401-e5a3-44fb-977e-23751a0cf0f0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Where can I configure highlightdemo to change the colors on it?

2017-05-19 Thread j3d1H
I'm trying to use the highlightdemo 
 plugin, but I don't 
like the python colors. Can I edit the plugin's files to make the 
background a different color, etc. until I like it? If so, where, and what 
do I do there?

-- 
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/1843ba81-5b53-421f-9932-cc082ca29fb6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Can I have a word counter for the words in the entire TW?

2017-05-11 Thread j3d1H
Birthe C: Thank you, but you may want to read my reply comment: It can't 
have anything to do with tags.

PMario: Hello again! I do thank you, but all of those links are for 
individual tiddlers.

-- 
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/6b79b213-01b3-4759-b35b-7e1128a18496%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Can I have a word counter for the words in the entire TW?

2017-05-09 Thread j3d1H

Erm.. I can't find any that have nothing to do with tags. To be more 
specific, it can't include any tag filtering. I need to have every tiddler, 
no matter what, word counted. I'm terribly
sorry if I'm just wasting everyone's time by asking this.

-- 
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/b77eb6ef-5179-41d7-92e6-25d0306d2e6e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Can I have a word counter for the words in the entire TW?

2017-05-08 Thread j3d1H
Using TW5, can I count how many words are in the TiddlyWiki? This could 
just be in a tiddler.

-- 
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/62af0fa5-e21d-4ab1-b016-384a7af7f56e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Can I modify a TW Classic plugin to work for TW5?

2017-04-27 Thread j3d1H
I have this word counter plugin here:

merge(config.macros,{
wordCount: {
handler: 
function(place,macroName,params,wikifier,paramString,tiddler) {

createTiddlyText(place,tiddler&?tiddler.text.match(/\w+/g).length:"0");
}
}
});

And I would like to make it compatible with TiddlyWiki 5. I'm fine if it 
needs a few extra steps, as long as it works.

-- 
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/6196a6db-2aec-4384-9d3b-1d01d22b76e2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Does editing a shadow tiddler hurt the system?

2017-04-26 Thread j3d1H
Thanks everyone! I really did not expect this to get this many answers, but 
that makes a lot of sense. :)

-- 
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/acb6978a-3482-44dd-a052-91e572ab5a7c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Does editing a shadow tiddler hurt the system?

2017-04-25 Thread j3d1H
This isn't quite a problem, and I'm sorry if this is spam, but I don't know 
what the ominous warning is for if it doesn't. So, does it do anything 
major if you make a seemingly safe change to, say, a sidebar shadow tiddler?

-- 
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/eff2f580-b5ac-4a13-849c-af060beffb03%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: (Remake of previous) I need to center code, and turn off the formatting.

2017-04-11 Thread j3d1H
Question about this site, I know it doesn't belong here, but how do I mark 
this as done and dusted? I think I saw it once, but I don't remember where.

-- 
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/38e6fe7b-2769-4d7e-98f7-be9cfbb2c9c0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: (Remake of previous) I need to center code, and turn off the formatting.

2017-04-11 Thread j3d1H
Thank you! This works perfectly.

On Tuesday, April 11, 2017 at 3:04:42 AM UTC-4, PMario wrote:
>
> Hi j3d1H,
>
> The easiest way IMO is to create a little template tiddler, that can be 
> used for transclusions.
>
> eg: 3 tiddlers
>
> the template - named ASCII
>
> 
> 
> <$view>
> 
>
> the content  - named: testcontent-type:  text/plain
>
>  __   __)   /
> (, )  |  / /)  /  
>| /| /  _  // _  ___   /  
>|/ |/ _(/_(/_(__(_) // (__(/_ o
>/  |
>
> usage - named: usage-test
>
> {{test||ASCII}}
>
> have fun!
> mario
>
>

-- 
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/ad18961f-bca5-489c-863c-73a24fa39bd6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Open the recently made tiddlers automatically

2017-04-11 Thread j3d1H
I'm looking for a plugin or code to open the recently made tiddlers (from 
the current day, as well as the last day) as well as the home page. For 
instance, say I keep a journal, and I use this. It will open the journal 
named after today, the one named after yesterday (because that's when they 
were made), and my home page. This *shouldn't* include things *edited* 
during that time, just created. I'm sorry this is so specific, but it's 
what I need. I use TW5, and I will provide more info if needed.

-- 
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/1484e2cb-2bb4-4adb-8227-7780e55930c2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: (Remake of previous) I need to center code, and turn off the formatting.

2017-04-10 Thread j3d1H
I know this may sound weird, but I need to have formatting on other 
sections. text/html format won't work; I need something like the code 
(monospace and no formatting, no whitespace eating), but centered, and only 
a section of the tiddler.

On Saturday, April 8, 2017 at 3:41:14 PM UTC-4, Mark S. wrote:
>
> This works if you set the tiddler type to text/html:
>
> 
> 
>
>  __   __)   / 
> (, )  |  / /)  /  
>| /| /  _  // _  ___   /   
>|/ |/ _(/_(/_(__(_) // (__(/_ o
>/  |
> 
>
>
> The standard tiddler format arbitrarily "eats" whitespace and interprets 
> some of those forward slashes as tag markers. I'm guessing that the TW5 
> parser is getting mixed up by the forward slashes when looking for embedded 
> HTML.
>
> HTH
> Mark
>
> On Saturday, April 8, 2017 at 8:14:45 AM UTC-7, j3d1H wrote:
>>
>> I know this sounds like a contradiction, but what I'm trying to do is 
>> make code (as it has underscores, it's ASCII art) that centers. I want to 
>> have it have the code border, too, so yeah. Here's the ASCII art in 
>> question:
>>
>>  __   __)   /  
>> (, )  |  / /)  /   
>>| /| /  _  // _  ___   /
>>|/ |/ _(/_(/_(__(_) // (__(/_ o 
>>/  |
>>
>> (It's Invita, from Figlet)
>> And I want to surround it with triple whatever-these-are: `
>> But centered. Is there a way to do this? (I do know that it will mess up 
>> a bit, as it tries to center it, but I can use whitespace to mess with 
>> that.)
>>
>> EDIT: I know the ASCII art looks messed up, but it looks fine in 
>> TiddlyWiki, so that *is* correct.
>>
>

-- 
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/74818804-deda-46cd-9b5f-6b42e1a75011%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] (Remake of previous) I need to center code, and turn off the formatting.

2017-04-08 Thread j3d1H
I know this sounds like a contradiction, but what I'm trying to do is make 
code (as it has underscores, it's ASCII art) that centers. I want to have 
it have the code border, too, so yeah. Here's the ASCII art in question:

 __   __)   /  
(, )  |  / /)  /   
   | /| /  _  // _  ___   /
   |/ |/ _(/_(/_(__(_) // (__(/_ o 
   /  |

(It's Invita, from Figlet)
And I want to surround it with triple whatever-these-are: `
But centered. Is there a way to do this? (I do know that it will mess up a 
bit, as it tries to center it, but I can use whitespace to mess with that.)

-- 
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/a5b70775-0086-4c58-8b02-4f8f22541af1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] I need to center ASCII art on the front page, please help!

2017-04-06 Thread j3d1H
So, I'm not sure if there *is* a way to do this, but I'd like to make it so 
that my Tiddlywiki has ASCII art (pure ASCII, no non-keyboard symbols) 
that's centered on every computer. I've tried mixing and matching HTML, and 
using the code, and none of it worked. Is there a way to do this? I'm using 
TW5. Tell me if I need to provide more info.

-- 
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/805cb2f0-61c6-4025-b53d-ab9d1c694766%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.