[tw5] Re: How do I show summary or caption field of a tiddler in the story river?

2020-09-05 Thread Brian Radspinner
1. Create a new tiddler; 2. Give it the tag: *$:/tags/ViewTemplate*. -- this will tell TW to display the contents of the tiddler in View mode; 3. Put *{{!!summary}}* in the main text field of the tiddler -- this tells TW to display the content of the "summary" field; 4.

[tw5] Re: how to open all the results after tag filter?

2020-09-02 Thread Brian Radspinner
Which part do you need help with? The code you have has two independent parts to it: a button that opens all the tiddlers with the Journal tag, and a title list of all tiddlers with the Journal tag. 1. If you only want the button to open tiddlers, delete the second <$list... by removing

[tw5] Re: Few question about using @@ construction to style the tiddlers

2020-09-02 Thread Brian Radspinner
You just specify the styling you want, and wrap the @@...@@ around the item(s), leave out the element, since you can only wrap around a single element (or nested elements). The following all work... ``` @@list-style-type:decimal; * list item * list item @@ @@list-style-type:lower-roman; *

[tw5] Re: Few question about using @@ construction to style the tiddlers

2020-09-09 Thread Brian Radspinner
Somewhere else in this group, it was stated that a blank line is needed *after any HTML element* *before using WikiText* to make sure that everything works as needed. So, when I want a more complicated nesting but still use WikiText for less typing, I put a blank line between the HTML and

[tw5] Re: Concatenation and arithmetic

2020-09-09 Thread Brian Radspinner
Building off TW Tones, here's a simple temperature converter using filters to pull an input number from a state tiddler ( $:/_br/converter/state ) field named "temp-f" and use filter math operators to convert it to celsius before editing another field (temp-c) in the same state tiddler. You can

[tw5] Re: Few question about using @@ construction to style the tiddlers

2020-09-07 Thread Brian Radspinner
Just to give another option, you can nest @@..@@ by adding some HTML around the nested @@...@@: @@list-style-type:decimal; # line # line ** @@list-style-type:lower-alpha; # line # line @@ ** @@ Proper CSS work is probably better, but this could work for quick one-off nested styling. On

[tw5] Re: RFC Request for Comment - color intuitions

2020-08-31 Thread Brian Radspinner
I really like this as an idea for a *developer's plugin*, but *not as default styling*. IMO, most of the mentioned styling is superfluous and distracting to a new user, or one who doesn't plan on using TW as a development platform. If the idea that all tiddlers are just components that are

[tw5] Trouble styling the Edit-mode Textarea element by CSS

2020-10-10 Thread Brian Radspinner
I'm trying to get colors specified via just CSS to keep everything consistent with CSS variables. I cannot figure out how to change the color of the main text input box in edit mode with CSS instead of a custom palette. It seems like at least one of the below selectors should work...but they

[tw5] Re: Show tags of <> in text field

2020-09-18 Thread Brian Radspinner
You can try putting this list in the tiddler text: *<$list filter="[all[current]tags[]sort[title]] -[[tag(s)ToExclude]]" template="$:/core/ui/TagTemplate" storyview="pop"/>* For easier use, save this to a tiddler with an easy title and transclude this tiddler whenever needed. On Friday,

[tw5] Re: paragraph spacing

2020-10-21 Thread Brian Radspinner
If you want consistent spacing between each line, then in a tiddler tagged with $:/tags/Stylesheet, add the following CSS: *.halfLine {* * line-height: 1.5em;* *}* Where ever you want this spacing, add a paragraph with the "halfLine" class... *some text...* or *@@.halfLine* *some text...*

[tw5] Re: SVG Overlay and positioning question?

2020-08-15 Thread Brian Radspinner
Use EM sizing for the house icon, move the other icon where you want it... .tc-image-home-button { width:6em; height:6em; } {{$:/core/images/home-button}} {{$:/core/images/close-others-button}} The above code gave me *this result *. On Saturday, August 15, 2020 at

[tw5] Re: SVG Overlay and positioning question?

2020-08-15 Thread Brian Radspinner
You can re-size the images using EM sizing however you want, then move the other icon to center it... .tc-image-home-button { width:6em; height:6em; } {{$:/core/images/home-button}} {{$:/core/images/close-others-button}} The above code gave me *this result *. --

[tw5] Re: Markdown bullet spacing

2021-01-06 Thread Brian Radspinner
You can try adjusting the top & bottom margins of the P element inside each of the Markdown-produced OL > LI items. Make a new tiddler and tag it with *$:/tags/Stylesheet*. In the tiddler body add some CSS for adjusting those paragraph margins, like this... *ol > li > p { margin: 0.25em auto;

[tw5] Re: Transclusion With Argument For Dummie

2020-12-23 Thread Brian Radspinner
Rather than simple transclusion, you can use a macro with a parameter. Make a new tiddler and tag it with *$:/tags/Macro*. Include the following: \define folderStuff($_$) blah-blah Navigate to C:\$_$ blah2-blah2 \end Save this macro tiddler. In another tiddler where you want the directions to

[tw5] Re: Transclusion With Argument For Dummie

2020-12-23 Thread Brian Radspinner
setup is identical, but there are > several values which are unique to one router or the other. > > On Wednesday, December 23, 2020 at 7:11:49 PM UTC-5 Brian Radspinner wrote: > >> Rather than simple transclusion, you can use a macro with a parameter. >> >> Make a new tiddler an

[tw5] Re: move preview panel to bottom for tagged tiddler

2020-11-09 Thread Brian Radspinner
Try working these values into your stylesheet and see how it goes, it works for me... /* - edit text field - */ .tc-tiddler-edit-frame .tc-tiddler-preview iframe.tc-edit-texteditor { float: none; width: 100%; } /* - content preview area - */ .tc-tiddler-preview-preview

[tw5] Re: Right-handed Vertical Tabs?

2020-11-14 Thread Brian Radspinner
; > Is there some special extra border or something that makes the gap appear? > > On Thursday, November 12, 2020 at 7:53:26 AM UTC-8 Brian Radspinner wrote: > >> You'll need to adjust for CSS styles to get the tabs to look good, but >> here are the basics for putting

[tw5] Re: Stop Classic story view from covering x px from the top.

2020-11-14 Thread Brian Radspinner
Whatever tiddler you have that holds the top bar, give it the class of " *$:/tags/PageTemplate*". The height of that tiddler should be the new scroll margin. An alternative is to have a tiddler just made to be that margin: Put the following in the body of a new tiddler... *This DIV is just

[tw5] Re: Stop Classic story view from covering x px from the top.

2020-11-14 Thread Brian Radspinner
Got things turned around...the "PageTemplate" class will keep the tiddler separate from the Story River, the "tc-adjust-top-of-scroll" class adjusts the margin. Tag the new tiddler with "*$:/tags/PageTemplate*". On Saturday, November 14, 2020 at 7:21:41 A

[tw5] Re: Right-handed Vertical Tabs?

2020-11-14 Thread Brian Radspinner
gt; how to do that yet though. Do you know how? > > On Saturday, November 14, 2020 at 6:35:27 AM UTC-8 Brian Radspinner wrote: > >> The "order" bit is a flex-box style that only works since the parent div >> has a flex-box style applied. >> >> For th

[tw5] Re: Right-handed Vertical Tabs?

2020-11-12 Thread Brian Radspinner
You'll need to adjust for CSS styles to get the tabs to look good, but here are the basics for putting the tabs on the right side. Put these in a tiddler tagged with *$:/tags/Stylesheet*... .tc-vertical .tc-tab-content { order: 1; border: solid #999; border-width: 0 1px 0 0; }

[tw5] Re: Right-handed Vertical Tabs?

2020-11-12 Thread Brian Radspinner
You'll need to adjust more CSS styles to actually make the buttons look good, but here's the basics to get the vertical buttons on the right side of the content. Put these in a tiddler tagged with *$:/tags/Stylesheet*... .tc-vertical .tc-tab-content { order: 1; border: solid #999;

[tw5] Re: Seeking reviewers for an upcoming TiddlyWiki textbook (both experts and beginners)

2020-12-30 Thread Brian Radspinner
David, I'm guessing you mean *The Book Wiki * by Kewapo On Wednesday, December 30, 2020 at 7:11:51 PM UTC-7 David Gifford wrote: > Hi Soren > > 1) You might want to team up with...shoot, my mind is drawing a blank. But >

[tw5] Re: Guide to font-size in TiddlyWiki?

2021-06-12 Thread Brian Radspinner
Try these: *html body.tc-body* { font-size: 16px; } * body p { font-size: 1em; } * *.tc-tiddler-frame* { font-size: 1em; } *.tc-sidebar-scrollable* { font-size: 1em; } For a page baseline size and some relative sizes. On Saturday, June 12, 2021 at 4:46:42 PM UTC-7 iamdar...@gmail.com wrote: >

[tw5] Re: viewtemplates that don't show under certain tiddlers?

2021-06-17 Thread Brian Radspinner
Try wrapping the content with this list... *<$list filter="[all[current]tagging[]first[]]">* Stuff to be displayed when a tiddler is a tag ** On Thursday, June 17, 2021 at 7:01:54 AM UTC-7 David Gifford wrote: > > Hi everyone > > I have a tiddler tagged $:/tags/ViewTemplate. That makes it

Re: [tw5] Re: Artwork for v5.2.0

2021-06-17 Thread Brian Radspinner
springer, if you could replace my first two attempts with the below smaller-sized version, I'd appreciate it.[image: v5.2.0_banner_brian.png] On Thursday, June 17, 2021 at 4:26:25 PM UTC-7 springer wrote: > Frank, and all, > > My own sense is that your last entry is the most compelling of your

[tw5] Re: color check / uncheck option

2021-06-15 Thread Brian Radspinner
Below is what I have for custom checkbox colors with CSS, it could a starting place for you. Put this in a tiddler tagged with *$:/tags/Stylesheet* and have fun. ^_^ .tc-tiddler-body input[type="checkbox"], .tc-tiddler-preview-preview input[type="checkbox"], .tc-sidebar-scrollable

[tw5] Re: empty.html should start with a "Centered story, fixed sidebar" setting.

2021-06-16 Thread Brian Radspinner
@Tones, I don't know if you can make a tool out of it but you can use CSS variables to get a start with one element's width effecting another's... *body.tc-body* { --sidebarWidth: 33.33%; } *.tc-sidebar-scrollable* { width: var(--sidebarWidth); } *.tc-story-river* { width: calc(100%

[tw5] Re: empty.html should start with a "Centered story, fixed sidebar" setting.

2021-06-17 Thread Brian Radspinner
I've currently got a 3-column layout going: center is the normal view mode; edit mode has the preview to the left and editor in the center; sidebar the right column where I often display full tiddlers side-by-side with the story river.[image: 3-column_layout.png] On Thursday, June 17, 2021 at

[tw5] Re: custom checkbox colors not working with PrintRiver Plugin

2021-06-18 Thread Brian Radspinner
I added the PrintRiver div class to the code. Give the below update a shot: .tc-tiddler-body input[type="checkbox"], .tc-tiddler-preview-preview input[type="checkbox"], .tc-sidebar-scrollable input[type="checkbox"], .tc-print-river-view-template input[type="checkbox"] {

[tw5] Re: custom checkbox colors not working with PrintRiver Plugin

2021-06-18 Thread Brian Radspinner
, .tc-sidebar-scrollable input[type="checkbox"]:active { border: none; box-shadow: none; outline-color: transparent; } On Friday, June 18, 2021 at 2:04:14 PM UTC-7 Brian Radspinner wrote: > I added the PrintRiver div class to the code. Give the below update a shot: > >

[tw5] Re: colored active radio button

2021-07-07 Thread Brian Radspinner
I follow what Mat said and hide the original styling. Here's an example with green coloring that you can play around with... input[type="radio"], .tc-tiddler-body input[type="radio"], .tc-tiddler-preview-preview input[type="radio"], .tc-sidebar-scrollable input[type="radio"] {

[tw5] Re: add hour to field

2021-07-04 Thread Brian Radspinner
The compare operator should be added to the Mathematics section of the Filter Operators table, I had no idea it existed until I saw Eric's answer above. On Sunday, July 4, 2021 at 2:57:05 PM UTC-7 Eric Shulman wrote: > On Sunday, July 4, 2021 at

[tw5] Re: Open Tiddler in New Window button

2021-07-01 Thread Brian Radspinner
Depends on what classes you used in your custom styles. If you right-click on the new window, you can see that only a few classes are used, not the usual tc.tiddler-frame, tc-tiddler-view-frame, etc... You'll want to add to your existing styles the * tc-single-tiddler-window*-based or the

[tw5] Re: Open Tiddler in New Window button

2021-07-01 Thread Brian Radspinner
I forgot to mention, you right-click on the new window and choose to inspect the window to see the classes used On Thursday, July 1, 2021 at 1:52:55 PM UTC-7 Brian Radspinner wrote: > Depends on what classes you used in your custom styles. If you right-click > on the new window, you c

[tw5] Re: How to make a more convenient method for selecting tags?

2021-07-12 Thread Brian Radspinner
That's interesting. Testing at TW.com and in my own TW, the menu floats above other tiddlers. Do you have any other CSS positioning for .tc-tiddler-frame, .tc-tiddler-view-frame, or .tc-tiddler-edit-frame? On Monday, July 12, 2021 at 4:43:01 PM UTC-7 miket...@gmail.com wrote: > Everything

[tw5] Re: How to make a more convenient method for selecting tags?

2021-07-10 Thread Brian Radspinner
Here's an option for a longer tags menu that doesn't move: use CSS to pin it to the sides of the screen... .tc-edit-tags .tc-block-dropdown.tc-block-tags-dropdown { position: fixed; top: 0; left: 0; bottom: 0; width: 20em; overflow: scroll; } On Saturday, July 10, 2021 at

[tw5] Re: How to make a more convenient method for selecting tags?

2021-07-10 Thread Brian Radspinner
If you don't want the drop-down menu to move, you can use CSS to stick the menu anywhere on screen. As an example, the following code with put the menu on the right side of the screen, stretched from top to bottom with a decent fixed width. BACKUP before trying it. .tc-edit-tags

[tw5] Re: How to make a more convenient method for selecting tags?

2021-07-10 Thread Brian Radspinner
If you want some more room for the tags menu, and for it not to move, you can use CSS to pin the menu on-screen. The following code will pin the menu to the top, left, and bottom of the screen to let you see more entries at once. .tc-edit-tags .tc-block-dropdown.tc-block-tags-dropdown {

[tw5] Re: Tiddlywiki right sidebar: How do you use it?

2021-04-27 Thread Brian Radspinner
I have a customized sidebar layout that works well for me: [image: SidebarLayout.jpg] On Tuesday, April 27, 2021 at 3:49:01 AM UTC-7 S² wrote: > Hello, > I really like Tiddly Wiki - I'm more user than programmer. > I prefer to have the whole screen available for the content of the > tiddler.

Re: [tw5] New magic of $list widget in Tiddlywiki 5.1.24: The index attribute

2021-04-25 Thread Brian Radspinner
I like either "ordinal" or "number" rather than index On Sunday, April 25, 2021 at 4:12:15 PM UTC-7 PMario wrote: > On Sunday, April 25, 2021 at 5:03:52 PM UTC+2 Jeremy Ruston wrote: > >> Does anyone have any thoughts on an alternative? >> >> Perhaps “counter”? >> > > I would prefer "*number*"

[tw5] Re: Monospaced block inside a quoted text?

2021-04-27 Thread Brian Radspinner
What part of the text disappears for you? Pasting your code into a new tiddler in TiddlyWiki.com seems to work as intended, with the code text showing inside the block quote. On Tuesday, April 27, 2021 at 12:22:35 PM UTC-7 Xabriña wrote: > this is the text i'm trying to put > > <<< > > You can

Re: [tw5] Re: Sticky editortoolbar?

2021-04-27 Thread Brian Radspinner
History Buff may be in the same "position" as I am: I think I have some other CSS styles that as messing with the ability to use what you posted. When I use position:sticky on the toolbar, it does nothing, still scrolls with the tiddler frame. On Tuesday, April 27, 2021 at 10:40:59 AM UTC-7

[tw5] Re: Changing tag name and all it's references

2021-04-30 Thread Brian Radspinner
You want to install the Relink plugin On Friday, April 30, 2021 at 11:12:44 AM UTC-7 zela...@mail.fresnostate.edu wrote: > Hello, > I need to change my Contents tag name to a different name, but I do have > many Tiddlers tied to this tag. How can I

[tw5] Re: Macros: A very (VERY!) basic introduction

2021-05-02 Thread Brian Radspinner
This is a very good beginning, Charlie. It took me quite a while on my own to figure out what you presented: macros simply applying code before being rendered. I'm looking forward to the next videos and what I'll surely end up learning from them. On Sunday, May 2, 2021 at 6:31:48 PM UTC-7

[tw5] Re: Single edge table

2021-04-23 Thread Brian Radspinner
You can start with this code to play around... Original lyrics go here Translation goes here table.lyrics, table.lyrics tr, table.lyrics tr td { border: none; } table.lyrics tr td.trans { border-left: 1px solid #000; } On Friday, April 23, 2021 at 9:00:38 AM UTC-7 Xabriña wrote: >

[tw5] Re: Single edge table

2021-04-23 Thread Brian Radspinner
at I was looking for. How could you make the two texts separate >> from the center line? >> >> El viernes, 23 de abril de 2021 a las 18:25:50 UTC+2, Brian Radspinner >> escribió: >> >>> You can start with this code to play around... &

[tw5] Re: Tiddlywiki right sidebar: How do you use it?

2021-04-27 Thread Brian Radspinner
Thank you Mohammad, How do you pin tiddlers? Is it a plugin or you use tagging? It's just a list that grabs tiddlers tagged with "Sticky" and displays them. I also have a Tiddler Controls button that adds the tag to a tiddler for easy one-click tagging. Having the Explorer tab readily

[tw5] Re: Limit the Length of the Recent SideBar Listing

2021-03-26 Thread Brian Radspinner
Edit the system tiddler: *$:/core/macros/timeline* Change "limit" in this line: \define timeline(*limit:"100"*,format:"DDth MMM ",subfilter:"",dateField:"modified") ...to the number of tiddlers you want to display On Friday, March 26, 2021 at 9:26:19 AM UTC-7 Captain Packers wrote: > Can

Re: [tw5] Re: [Help?] List the links and backlinks of the target tiddler in a sidebar tiddler

2021-04-05 Thread Brian Radspinner
I love this idea, David, so I tried to simplify the tiddlers for my use. I don't know about proper plugins setup, so I have this JSON to drag to TW. I switched out the icon for a unicode character to keep things all in tiddlers. On Wednesday, March 31, 2021 at 4:45:06 AM UTC-7 Anjar wrote: >

[tw5] Re: Close sidebar button

2021-03-29 Thread Brian Radspinner
Add the tag *$:/tags/TopRightBar* to your button's tiddler On Monday, March 29, 2021 at 11:23:59 AM UTC-7 rika.s...@gmail.com wrote: > Hey everyone - I stopped seeing the button to close the pinned sidebar. > Please help! > I've attached a screenshot of the button's code. It used to be

[tw5] Re: Close sidebar button

2021-03-29 Thread Brian Radspinner
Sorry, to put it in the sidebar, tag it with *$:/tags/SideBarSegment* On Monday, March 29, 2021 at 11:32:46 AM UTC-7 Brian Radspinner wrote: > Add the tag *$:/tags/TopRightBar* to your button's tiddler > > On Monday, March 29, 2021 at 11:23:59 AM UTC-7 rika.s...@gmail.com wrote:

[tw5] Re: VIEWTEMPLATETIDDLER

2021-04-08 Thread Brian Radspinner
Check out $:/core/ui/ViewTemplate, but the code may be talking about a custom ViewTemplate tiddler, or a tiddler that is supposed to be tagged with "$:/tags/ViewTemplate", or something else. Please post some more details about what you are trying to do, for clarification. On Thursday, April 8,

Re: [tw5] Re: Rendering colored symbols

2021-04-09 Thread Brian Radspinner
Here are the macros I have for card suite colors, in a tiddler tagged with " *$:/tags/Macro*" \define club() @@color:black; @@ \define diamond() @@color:red; @@ \define heart() @@color:red; @@ \define spade() @@color:black; @@ <>`<>` <>`<>` <>`<>` <>`<>` On Friday, April 9, 2021 at 1:46:32 PM

[tw5] Trouble with nested lists, variables, prefix operator

2021-04-19 Thread Brian Radspinner
Hello all, I am trying to get a nested timeline of Journal entries. Each Journal tiddler title starts with the prefix "YYY-0MM-0DD/" (example: *2021-04-19/Walking*). For each day, there is also an empty tiddler titled with the format "YYY-0MM-0DD" (example: *2021-04-19*). These "day"

[tw5] Re: Trouble with nested lists, variables, prefix operator

2021-04-19 Thread Brian Radspinner
the nested bit with the <$tiddler tiddler=year> widget is > necessary. > On Monday, April 19, 2021 at 1:52:48 PM UTC-7 Brian Radspinner wrote: > >> >> Hello all, >> >> I am trying to get a nested timeline of Journal entries. Each Journal >> tiddler title star

[tw5] Re: More Free Icons/images for Windows 10 Users that work well with TiddlyWiki

2021-04-16 Thread Brian Radspinner
These are nice-looking icons. If you are not embedding them directly in the wiki, they could still be of use as more colorful background images and such rather than standard gui elements On Friday, April 16, 2021 at 12:41:52 PM UTC-7 Mat wrote: > Tones, thanks, that was definitely worth sharing

[tw5] Re: How to make a more convenient method for selecting tags?

2021-07-14 Thread Brian Radspinner
around 200. On Wednesday, July 14, 2021 at 3:28:11 AM UTC-7 miket...@gmail.com wrote: > and how can I do it? > > среда, 14 июля 2021 г. в 03:32:14 UTC+3, Brian Radspinner: > >> Try bumping up the z-index of the tiddler being edited: >> >> .tc-tiddler-edit-fr

[tw5] Re: How to make a more convenient method for selecting tags?

2021-07-13 Thread Brian Radspinner
; .tc-edit-tags .tc-block-dropdown.tc-block-tags-dropdown { >position: fixed; >top: 100px; >right: 40px; >bottom: 200px; >width: 30em; > overflow-y: auto; > } > > > > вторник, 13 июля 2021 г. в 03:15:23 UTC+3, Brian Radspinner: > >> That's

[tw5] Re: How to make a more convenient method for selecting tags?

2021-07-13 Thread Brian Radspinner
июля 2021 г. в 00:58:50 UTC+3, TW Tones: > >> I believe z index of 1000 or 1500 should stop this. >> >> Tones >> >> On Wednesday, 14 July 2021 at 03:07:30 UTC+10 Brian Radspinner wrote: >> >>> I don't think that simple CSS can solve this, sin

[tw5] Re: New tiddler button - what's wrong with it?

2021-08-02 Thread Brian Radspinner
Jon, give this a try... *\define newTidAction()<$action-createtiddler $basetitle=<> tags="log" text=<>/>\end<$button actions=<> class="tc-btn-invisible">{{$:/core/images/new-button}}* If you don't have a variable for the text field, you can leave it blank text="" or leave

[tw5] Re: Is it possible to apply conditional styling to links?

2021-07-31 Thread Brian Radspinner
I believe this ooktech demo has an option for what you want. It uses macros which would hide them from link/backlink lists On Saturday, July 31, 2021 at 12:50:43 PM UTC-7 Si wrote: > For example say I wanted every link to a tiddler with the

Re: [tw5] Re: Introducing: the Subsume plugin.

2021-07-18 Thread Brian Radspinner
@sapphireslinger give this a try: <$list filter="[collection[foo]sort[title]]"> <$macrocall $name=subsume tid=<>/> On Sunday, July 18, 2021 at 7:35:56 PM UTC-7 Sapphireslinger wrote: > David, thank you so much for this Subsume plugin. May I ask how to use it > in a list filter? > > This

Re: [tw5] Re: Introducing: the Subsume plugin.

2021-07-19 Thread Brian Radspinner
"f1"/> On Monday, July 19, 2021 at 1:00:04 PM UTC-7 scot wrote: > Thanks @ David Gifford for another great tool. > > Hello @Brian Radspinner, > Can you tell me how to expand the filter to include additional tiddler > fields other than title. > e.g. {{!!f1}} > > The e

[tw5] Re: Seeking general feedback on Grok TiddlyWiki

2021-07-21 Thread Brian Radspinner
To start: I don't have any coding background. I've been using TiddlyWiki on-and-off for a few years with Classic and TW5 from a fairly strict end-user perspective while only messing with stylesheets and others' plugins. Over the last year I've started trying to understand more of the program

[tw5] Re: What other tools compliment TiddlyWiki well? [discussion]

2021-07-21 Thread Brian Radspinner
I use Google Keep to capture thoughts on the fly on my phone. When I get back to my laptop, it's easy to copy and paste from the Keep web interface into TW On Wednesday, July 21, 2021 at 12:10:04 PM UTC-7 Si wrote: > This question was prompted by a discussion over in the thread on >

[tw5] Re: Introducing: the Subsume plugin.

2021-07-16 Thread Brian Radspinner
I like it! Simple but effective. An option to think about: you could change the asterisk link to instead be a button that opens the tiddler in edit-mode rather than view-mode.It will save a step to go right to editing. On Friday, July 16, 2021 at 4:33:23 PM UTC-7 David Gifford wrote: > Hi

[tw5] Re: How to make a default field for a new record?

2021-07-15 Thread Brian Radspinner
Try adding the following code to a new tiddler tagged with "$:/tags/EditTemplate" url <$edit-text field="url" default="" tag="input"/> This will put a table styled like the other fields list with the URL field showing in the tiddler editor. On Thursday, July 15, 2021 at 9:00:22 AM

[tw5] Re: How to make a default field for a new record?

2021-07-15 Thread Brian Radspinner
Try adding the following code to a new tiddler tagged with "$:tags/EditTemplate" url <$edit-text field="url" default="" tag="input"/> This will put a table styled like the other fields list with the URL field showing in the tiddler editor. On Thursday, July 15, 2021 at 9:00:22 AM

[tw5] Re: How can I override the color of a link without changing the rest of the styling?

2021-07-26 Thread Brian Radspinner
s myClass, but why doesn't > .myClass work? Shouldn't it select any element with the class myClass, > which would naturally include any link element with that class? > On Monday, 26 July 2021 at 19:21:54 UTC+1 Brian Radspinner wrote: > >> Try this: >> >> >> *a.myC

[tw5] Re: How can I override the color of a link without changing the rest of the styling?

2021-07-26 Thread Brian Radspinner
Try this: *a.myClass {color:green;}<$link class=myClass to="Hello"/>* On Monday, July 26, 2021 at 10:09:46 AM UTC-7 Si wrote: > I'm trying to create a template using the link widget that gives me green > links. I tried the following which does not work: > > > .myClass {color:green;} > >

[tw5] Re: Tag Cloud (TiddlyWiki coding fun)

2022-07-11 Thread Brian Radspinner
Here's a really simple tag cloud by...a certain *someone*; responding to a thread with a few other examples if you want to compare code Tag Cloud by E...n On Monday, July 11, 2022 at 7:43:36 PM UTC-7 cj.v...@gmail.com wrote:

[tw5] Re: Just a reminder: using filters in permalinks

2022-06-12 Thread Brian Radspinner
Also, Charlie, that's awesome. I don't recall seeing anyone actually do this before, but it's a great way to send someone right to a convenient list of tiddlers. Nice On Sunday, June 12, 2022 at 11:08:23 AM UTC-7 Brian Radspinner wrote: > The link got mangled in Talk TiddlyWiki, so le

[tw5] Re: Just a reminder: using filters in permalinks

2022-06-12 Thread Brian Radspinner
The link got mangled in Talk TiddlyWiki, so let's try getting the URL in a code block... ``` https://basicanywheremachine.neocities.org/BAM_IDE.html#:[tag[.bas]regexp:description[(?i)GW-BASIC]sort[]] ``` -- You received this message because you are subscribed to the Google Groups "TiddlyWiki"

[tw5] Re: TiddlyWiki CSS Designer application: now available to play with

2022-10-18 Thread Brian Radspinner
I like where this is going. Visual tools like this, and mario's color palette previews, should prove to make *relatively* common user customizations easier to perform. Depending on how this project evolves, I think it would be a good idea to have a version of this tool formatted as a Control

[tw5] Re: hide some menu items from the "More" tab

2022-10-08 Thread Brian Radspinner
This is why I made my Sidebar Tabs Organizer . I can check-uncheck boxes to show/hide/move tabs easily from the Control Panel. [image: CtrlPanel-TabsTab.jpg] On Friday, October 7, 2022 at 4:23:53 PM UTC-7 mobil...@gmail.com wrote: > [image:

[tw5] Re: hide some menu items from the "More" tab

2022-10-09 Thread Brian Radspinner
se tabs horizontally? > [image: 2022-10-09_23-41.png] > > On Sunday, October 9, 2022 at 12:50:57 AM UTC+1 Brian Radspinner wrote: > >> This is why I made my Sidebar Tabs Organizer >> <https://br-tabs-organizer.tiddlyhost.com/>. I can check-uncheck boxes >> to show/h

[tw5] Re: Change the font size of wiki title

2022-10-01 Thread Brian Radspinner
Make a tiddler and give it the tag * $:/tags/Stylesheet * Put this in the body of the tiddler: ``` .tc-sidebar-scrollable .tc-site-title { font-size: 1rem; } ``` Change the //1rem// to whatever size you want it to be. On Saturday, October 1, 2022 at 11:30:22 AM UTC-7

[tw5] Re: Getting old versions of TiddlyWiki for the non-technical

2022-08-13 Thread Brian Radspinner
There's also the Classic TW Archive page for many of the Classic versions On Saturday, August 13, 2022 at 10:40:14 AM UTC-7 cj.v...@gmail.com wrote: > If you aren't particularly technical (GIT and NODE), and don't > particularly wnat to be. > > A quick

[tw5] Re: A Transclude Assistant for the Editor Toolbar

2023-02-07 Thread Brian Radspinner
Very nice.  This video, like Dave Gifford's videos, reminds me that I should take time to jot down repeated actions and see if I can make my own EditMode tools. First thing that came to me was a "character picker" popup that could insert ``, ``, `ndash;`, and the like without a toolbar

[tw5] Re: A little help for installin TiddlyDesktop

2023-07-26 Thread Brian Radspinner
If you are on Windows, it would be “nw.exe” you can create a shortcut and put that wherever you like Unzip into a folder and run TiddlyWiki.app or nw.exe and for linux nw Note that TiddlyDesktop will not work correctly from a Windows UNC network share (eg \\MY-SERVER\SHARE\MyFolder). On