Questions tagged [tiddlywiki]

TiddlyWiki is a complete wiki application in a single HTML file, which includes user content. TiddlyWiki favors portability over collaborative editing (but implementations vary).

TiddlyWiki is a complete wiki in a single HTML file. It contains the entire informational content, and all the JavaScript, CSS and HTML code to let you view, edit and search it -- without needing a server (though there are ServerSide implementations). It works well as a personal information manager stored on portable media such as a flash drive.

TiddlyWiki is published under a BSD Open Source License. TiddlyWiki 5 is a complete rewrite in progress. The functional goals are the same, but it is not yet fully released and must not be confused with TiddlyWiki "Classic".

Questions about usage (instead of programming and development) should be posted at at Web Apps StackExchange.

84 questions
2
votes
0 answers

how to set UserName in TiddlyWiki using cookies

how to set UserName in TiddlyWiki5 using cookies? It's annoying to set UserName everytime after a refersh in Chrome. Thank you. something like $:/status/UserName = document.cookie.split("; UserName=")[1]
Zhilong Jia
  • 2,329
  • 1
  • 22
  • 34
2
votes
1 answer

TiddlyWiki: How does TiddlyWiki save its changes to itself on the local file system?

How does TiddlyWiki save its changes to itself on the local file system? And how does TiddlyWiki keep the each tiddler's change until "Save Changes" is executed? I want to understand the mechanisms. But I cannot figure it out from the source…
Morry
  • 21
  • 1
  • 3
2
votes
0 answers

Tiddlywiki Custom Field Sort As Number

I'm making a TiddlyWiki where some of the tiddlers contain the following fields: age year month date corresponding to the date of the tiddler in a fictional universe (hence I can't use the existing date fields, the calendar is different). I have…
2
votes
1 answer

List of tiddlers with clickable tags formated as links

I want to display a list of tiddlers with a specific tags. Each item/tiddler should be displayed with a list of clickable tags (its tags formatted as hyperlinks). How do I have to modify the following code (which displays the tags as plain text) in…
lith
  • 929
  • 8
  • 23
1
vote
1 answer

Editing a specific macro in tiddlywiki using tiddlers

I want to edit the default "tagging" list in the top left corner of each tiddler to have an horizontal layout and stay out of the way of the tiddlers text. As I am rather new to tiddlywiki and javascript I do not know where and how I would…
user290494
  • 205
  • 3
  • 11
1
vote
1 answer

How to execute shell scripts from a web page via javascript/jquery and get its results in a string?

in a simple html file opened locally via firefox I need some javascript code to execute a command (maybe "ls") and get it's result in a string I can use in js/jquery to alter the page contents. I already know this is a generally bad idea, but I have…
Vasily
  • 316
  • 3
  • 12
1
vote
1 answer

How to make a TiddlyWiki table of contents (toc) with differnt colors

I use
<>
where every tiddler tagged with Inhalt is listed in toc. This works fine. But I have an additional tag named Fahrt. Is it possible to change the color in the toc of this entries? The…
Schorsch
  • 137
  • 1
  • 12
1
vote
0 answers

View tiddler with source code in pre block with syntax highlighting

I have a tiddler that contains SQL source code. I am embedding it into another tiddler using the $codeblock macro, and that works wonderfully. When I view the source tiddler (the first one), I'd like to get it formatted like the embedded one (in a…
neezer
  • 19,720
  • 33
  • 121
  • 220
1
vote
0 answers

TiddlyWiki Mono theme colors issue

Hi All TiddlyWiki fans, I have an issue with Mono theme for Tiddlywiki - http://j.d.mono.tiddlyspot.com/ When any plugin selected it isn't readable. Moreover It can't be fixed with any color palettes. Also this problem happens when I use Tiddlytool…
ruhagen
  • 43
  • 5
1
vote
1 answer

Tiddlywiki. TiddlyTools. TagCloud for specific tags only

I just found a great tool for TagCloud generating - https://tiddlytools.com/filtergenerators.html#TiddlyTools%2FFilterGenerators%2FTagCloud Could you please help me out to change the code for showing only specific tags (For Example: just…
ruhagen
  • 43
  • 5
1
vote
1 answer

Convert a single-file Tiddlywiki to a folder for use with NodeJS locally

I've downloaded a tiddlywiki.html file, which I want to host locally with NodeJS for personal use. How do I do that? I tried tiddlywiki --load, but it exited successfully without appearing to do anything.
Adam Millerchip
  • 20,844
  • 5
  • 51
  • 74
1
vote
1 answer

How to use a logical operator in WikiText to select a tiddler with one OR another tag?

The TiddlyWiki documentation provides an example of the tag operator: [tag[task]] This selects all tiddlers that have been tagged as task. How though would one select all tiddlers tagged with one OR another tag; so for instance I want to select all…
Concrete_Buddha
  • 556
  • 4
  • 16
1
vote
1 answer

Tagging imported BibTex entries in TiddlyWiki 5

I'd like to use TW5 to support a literature review, and the BibTeX import looks very useful. I am dragging a .bib file onto TW, and an import list is produced, one entry per article. Works well, and the tiddlys produced have the info in usefully…
user2162871
  • 409
  • 3
  • 10
1
vote
1 answer

How to use the output of a tiddlywiki widget itself as a value for another wikitext expression?

Currently I'm trying to create a macro. The macro will be used within a $list widget which will cycle through a collection of tiddlers (chosen as per certain filter criteria which themselves aren't relevant here). Within the above $list widget, for…
Keyboard Penman
  • 162
  • 1
  • 11
1
vote
2 answers

In a Tiddler, how to list all its fields and their values?

Using TiddlyWiki, I'm trying to show, in a specific Tiddler, a subset of all the fields of that tiddler, with their values. The problem is, while I'm able to list all the relevant fields' names, I cannot print their value. My current code is: <$list…
paercebal
  • 81,378
  • 38
  • 130
  • 159