mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-08 10:59:57 +00:00
15 lines
834 B
Plaintext
15 lines
834 B
Plaintext
title: Tiddlers
|
|
tags: docs concepts
|
|
|
|
Tiddlers are the smallest unit of information in TiddlyWiki.
|
|
|
|
Internally, tiddlers are an immutable dictionary of name:value pairs called fields. The only field that is required is the `title` field, but useful tiddlers also have a `text` field, and some or all of the standard fields listed below. The behaviour and type of each field is determined by special TiddlerFieldModules.
|
|
|
|
* `title` - The unique title of the tiddler
|
|
* `modified` - The date of the last modification to the tiddler
|
|
* `modifier` - The name of the last person to modify the tiddler
|
|
* `created` - The date the tiddler was created
|
|
* `creator` - The name of the person who created the tiddler
|
|
* `tags` - A list of tags applied to the tiddler
|
|
* `type` - The ContentType that should used to interpret the content of the tiddler
|