[tw] Export some of my Tiddlers to Onenote

2016-04-01 Thread Andy Wood
Hi group, as the title suggests, I would like to export some tiddlers to Onenote. I would like for the text within them to be searchable / editable in onenote. I tried printing to onenote but that didn't allow the text to be editable although it did bring accross the images. I tried export as

[tw] not working in a filter field

2016-04-01 Thread Christopher Londrie
> |!Name |{{!!corpname}}| > |!Business |{{!!corp-business}}| > |!Involved NPCs | <$list > filter="[tag[]]"><$link><$view > field="title"/>| > |!@@color:#FF;Reputation@@ |@@color:#FF;Front for a planetary > government’s espionage arm@@|<| > > !!!Notes > > This is the bit I'm using

Re: [tw] Re: font question

2016-04-01 Thread Siniy-Kit
like this. @font-face { font-family: 'Raleway', sans-serif; src: url('http://akos.hd.hu/font/Raleway-Regular.ttf') format('truetype'); } body {font-family: 'Raleway', sans-serif;} but ttf don't work in IE. for IE use .eot пятница, 1 апреля 2016 г., 21:37:16 UTC+3 пользователь Ákos Szederj

[tw] Re: Populating a Select from a user input term

2016-04-01 Thread 'Mark S.' via TiddlyWiki
Eric Shulman explained how to do a preferential caption/title a few weeks ago: <$view field='caption'><$view field='title'/> HTH Mark On Friday, April 1, 2016 at 7:09:31 PM UTC-7, Stephen Kimmel wrote: > > Mario and Mark, > > Many thanks. Your reworking was exactly what I needed. I had missed

[tw] Re: Populating a Select from a user input term

2016-04-01 Thread 'Stephen Kimmel' via TiddlyWiki
Mario and Mark, Many thanks. Your reworking was exactly what I needed. I had missed the detail of the single curly bracket when used with a filter. I went with the caption field rather than the title because some of what I'm having the user look-up are system files which I find have names that

[tw] Re: Tables don't render in a list widget

2016-04-01 Thread Christopher Londrie
I resolved this by resorting to using HTML, but that seems drastically counter-productive. Why use markup if it doesn't work inside what I think I'm reasonably assuming is a common element like lists? On Friday, April 1, 2016 at 6:39:38 PM UTC-5, Christopher Londrie wrote: > > I've included a p

[tw] Tables don't render in a list widget

2016-04-01 Thread Christopher Londrie
I've included a picture, for reference. (See attached) I'm trying to build a table of two attributed from various tiddlers, to create an easy-to-update master list, but the table syntax is being ignored inside of a <$list>, is this intended? -- You received this message because you are subscri

[tw] Re: Populating a Select from a user input term

2016-04-01 Thread PMario
On Friday, April 1, 2016 at 11:55:49 PM UTC+2, PMario wrote: > > >><$view field='caption'/> > > IMO here is a problem! .. If a tiddler has no caption field, it creates an empty element in the select box. So either you need to make sure this never happens or you need a title fallback. -mario --

[tw] Re: Populating a Select from a user input term

2016-04-01 Thread 'Mark S.' via TiddlyWiki
Using transclusion in a filter has a special syntax -- just put the item in single curly brackets instead of bracket and double curlies . So your filter now looks like: *<$list filter='[all[shadows+tiddlers]tag[WikiText]search{$:/temp/searchterm}sort[title]]'>* HTH Mark On Friday, April 1, 20

[tw] Re: Populating a Select from a user input term

2016-04-01 Thread PMario
Hi, try this: <$select> <$list filter='[all[shadows+tiddlers]tag[WikiText]search{$:/temp/searchterm} sort[title]]'> >><$view field='caption'/> see: http://tiddlywiki.com/#TextReference I used this to test the stuff <$edit-text tiddler="$:/temp/searchterm" tag=input/> {{{[t

[tw] Re: Codemirror Documentation

2016-04-01 Thread BJ
Good stuff. The keyboard shortcut for cancel edit is control via this tiddler $:/config/shortcuts/cancel-edit-tiddler all the best On Friday, April 1, 2016 at 9:34:17 PM UTC+1, Robert Edwards wrote: > > Thanks BJ & Hegart. > > I managed to get vi mode working. One gotcha I've found is that

[tw] Populating a Select from a user input term

2016-04-01 Thread 'Stephen Kimmel' via TiddlyWiki
A regular search generates a list of links. Instead of that I want to populate a $Select widget list. I've been able to populate the $Select widget list from a $List that includes a search operator that has a hard coded entry in the filter using something like this <$select> <$list filter='[a

[tw] Re: Codemirror Documentation

2016-04-01 Thread Robert Edwards
Thanks BJ & Hegart. I managed to get vi mode working. One gotcha I've found is that to change modes in vi from insertion to command, the key is the escape key. This is also the key TW uses to abandon a tiddler. It brings up an "Abandon changes to this tiddler?" dialog. If I cancel it, it return

Re: [tw] Re: font question

2016-04-01 Thread Ákos Szederjei
Like this? @font-face { {font-family: 'Raleway', sans-serif;} src: url('http://akos.hd.hu/font/Raleway-Regular.ttf') format('truetype'); body {font-family: 'Raleway', sans-serif;} On 4/1/2016 6:31 PM, Siniy-Kit wrote: > you can put code with path to font file (.ttf for example) to your > styl

[tw] Re: Custom export button

2016-04-01 Thread PMario
Hi Omit, Try this: \define export-to-json(tag:"public", fileName:"export.json") <$button> <$action-sendmessage $message="tm-download-file" $param="$:/core/templates/exporters/JsonFile" exportFilter="""[tag[$tag$]]""" filename="""$fileName$"""/> {{$:/core/images/export-button}} export ''<$count

Re: [tw] [TW5] Filter output "format" is either links or string - that's a problem!

2016-04-01 Thread 'c pa' via TiddlyWiki
You can use $list instead of set Paste this into your tiddler and you get one item at a time: <$list variable="first" filter="[list[tid!!text]first[]]"> <> <$list variable="second" filter="[list[tid!!text]nth[2]]"> <> <$list variable="third" filter="[list[tid!!text]nth[3]]"> <>

[tw] Re: Create a list of data-dictionary tiddlers that contain a certain text field

2016-04-01 Thread 'c pa' via TiddlyWiki
Put an X in the list like this: <$list filter="[getindex]"> X -- 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 pos

[tw] Re: font question

2016-04-01 Thread Siniy-Kit
you can put code with path to font file (.ttf for example) to your stylesheet for example @font-face { font-family: 'fontawesome'; src: url('fonts/fontawesome-webfont.eot'); src: url('fonts/fontawesome-webfont.woff') format('woff'), url('fonts/fontawesome-webfont.ttf') format('truetype'),

[tw] font question

2016-04-01 Thread Ákos Szederjei
Hello everyone on this lovely list! I just discovered TiddlyWiki, and I am fooling around with the different style settings ,like: CSS, fonts, etc. I have a couple of questions, and I hope I am at the right place. Q1 This code does exactly what is says in each line, when put into a Tiddler in th

Re: [tw] Save/download so file gets named as SiteTitle (not tiddlywiki.html)

2016-04-01 Thread Mat
Hi again Jeremy. > But why are you so fixed on the idea of clearing the password field as the > way of indicating which type of save you want to perform? > Hm, not quite like that: In 95% of the cases I want to upload to tiddlyspot rather than download. The only practical way I know to downl

[tw] Re: Image before Tiddler possible?

2016-04-01 Thread Evolena
Hi Peter, You can try to use the field "icon" for your tiddler, with the name of the tiddler containing your icon (see for example the tiddler TagManager ; you can use any image, not only the built-in svg icons). It will be before the title, and resiz

[tw] Custom export button

2016-04-01 Thread Omit
Hi, I'd like to create a button in the sidebar that automates the following sequence of actions: * select all tiddlers that have the "Public" tag * export them all to JSON format This can easily be done thanks to the instructions here http://tiddlywiki.com/#How%20to%20export%20tiddlers by doing

[tw] Re: Image before Tiddler possible?

2016-04-01 Thread peter . biewer
Am Donnerstag, 31. März 2016 20:33:09 UTC+2 schrieb peter@hotmail.de: > > Hello all! > > I am fairly new to TiddlyWiki, but piece by piece I'm gettin into it. > There is one thing I would love to have in my personal Wiki. I use icons a > lot in my daily pc routine, so I am searching for a co

Re: [tw] Save/download so file gets named as SiteTitle (not tiddlywiki.html)

2016-04-01 Thread Jeremy Ruston
Hi Mat > Hm, a conditional "wrapper" consisting of a simple list filter could display > the circled tick if tere is a password and a download if there isn't. But > this needs to test if a password field > is set or > not - is

Re: [tw] [TW5] Filter output "format" is either links or string - that's a problem!

2016-04-01 Thread Jeremy Ruston
Hi Mat > Aha, so the SetWidget "remakes" the filter output (which is originally a set > of tiddlers ) into a list. That's interesting. No. The output of the filter is a list. The standard TiddlyWiki way of storing a list as a string is to quote the entries in the

Re: [tw] Save/download so file gets named as SiteTitle (not tiddlywiki.html)

2016-04-01 Thread Mat
Jeremy Ruston wrote: > > So, I'd suggest adding a new "save local" page toolbar button that uses > the download method to save the file locally. > Hm, a conditional "wrapper" consisting of a simple list filter could display the circled tick if tere is a password and a download if there isn't. B

Re: [tw] [TW5] Filter output "format" is either links or string - that's a problem!

2016-04-01 Thread Mat
Jeremy, thanks for super fast reply!!! All you're seeing here is the quoting rules that TiddlyWiki uses for lists; > the result of <$set filter> is a list; by design. > Aha, so the SetWidget "remakes" the filter output (which is originally a set of tiddlers ) in

Re: [tw] [TW5] Filter output "format" is either links or string - that's a problem!

2016-04-01 Thread Jeremy Ruston
Hi Mat All you're seeing here is the quoting rules that TiddlyWiki uses for lists; the result of <$set filter> is a list; by design. I suspect that sometimes what you actually want is to access the first element of the list as a single item, without the list quoting. That's something that the <$se

[tw] [TW5] Filter output "format" is either links or string - that's a problem!

2016-04-01 Thread Mat
Problem illustrated as minimal test case: Put this in first tiddler: title: tid text: aaa bbb ccc and then this in *another *tiddler; Original string (i.e the text in tid): {{tid}} <$set name="prefix_aaa" filter="[[tid]get[text]splitbefore[aaa]]"> <$set name="prefix_bbb" filter="[[tid]get[text]