zettel_requirements.txt

Purpose

To replicate the essential features of the paper-based Zettelkassen system, with potential improvements.

Basic User Requirements

1. No Lockin

Requirement: The notes data must be in such a form that they may be transferred to another notes system (even a paper one) without losing any essential data.

Discussion: If the note-keeper decides to change to another notes mangement system, the data must be useful outside the Zettel-box, so that months or years of research not be lost. What is the most basic alternative system? That would probably a full-text search system. Another basic system would be a paper system like the original zettelkasten.

These needs lead to the next requirement.

Lock In

It appears that it will be relatively easy to export the zettel-box data into a text format.

2. Text Files

Requirement: The zettel-box notes must be in a text format. They may be one note per file, all notes in one file, or a combination. Alternatively, the system must be able to export such files with no loss of data.

Definition: "Text format" includes slightly structured text-based formats like Markdown or ReStructured Text. It excludes more complex formats such as XML. The intent is that the note files must be easily readable by a person.

Discussion: Using one file per note seems to be the simplest way to emulate the original paper-based system, which had one card per note. However, a larger file could be used if there is simple way to extract or recognize individual notes. This would allow a computer program to separate the individual note if needed.

Text File Format

Using Leo nodes for the zettels, text format files will not be hard to export.

3. Simple Section Demarkations

Requirement: If a note needs identified sections, the section demarkations must be easy to type, easy to read, and easy to parse by computer.

Discussion: An identified section could be a URL, a group of references to other notes, a tag or indexing aid, a citation list, etc.

Section Markers

At this time, if we use one Leo node for one zettel, section markers would not seem to be needed. They could be part of the exported text format.

4. Unique Identification

Requirement: Each note must be uniquely identifiable, so that it can be referenced by other notes.

Unique IDs

Leo identifies each node with a unique ID that includes a timestamp.

5. Hierarchical Navigation

Requirements: The system must support a flexible system for identifying notes that have parent/child or sibling relationships with other notes. These relationships must be included in the text files or the exported data. It must be possible to also have notes that do not possess a hierarchical designation (possibly as a temporary characteristic).

Ref: see The Zettelkasten Method.

Discussion: This was a key characteristic of the original Zettelkasten system. Basically it amounted to each note having an optional parent-child or sibling relationship with certain related notes. In the paper system, a note was decorated with an indexing expression like "1.2.1.4" or (a more concise form) "1a1d". This designation let the notekeeper file and find closely related note cards.

The system needs to be flexible because it is likely that newer notes will be created to elaborate on older ones, so insertions will be required. In the original system, these designations acted as unique card identifiers.

Note: All notes must be findable whether or not they contain any links to any other parent/child or sibling notes.

7. Time Stamp

Requirement: Each note must be able to have an optional timestamp.

Discussion: A number of people have written that having a timestamp is helpful in reconstructing the context of recent work, since the most recent notes most likely represent work that was recently done.

It is currently unclear about whether only a creation date would be enough, or whether a last-modified date will also be helpful. It the interest of simplicity in a potential move to hand-created or paper notes, a single date would be better.

Time Stamps

Leo nodes have an ID that includes a creation timestamp.

8. Tags

Requirement: The system must be capable of optionally attaching one or more "tags" to any note. Tags must be easy to create, delete, and attach.

Definition: A tag means a property represented by a name (a string).

Discussion: Tags serve primarily as a filtering mechanism, to help identify notes in a general area of interest.

Tags

Leo has a plugin called nodetags. This plugin lets a node be assigned one or more tags. It can do a fairly comprehensive search for combinations of tags.

The plugin does not support any structure for the tags. But if one wrote a tag name as a path statement, like zettel/navigation, it should be fairly easy to parse them into a structure, or to search on just part of the tag.

Backlinks

The Leo "backlink" plugin automatically creates links between nodes in both directions, so creating a link effectively creates a matching backlink.

10. Display Styles

Requirement: Selected subsets of notes must be displayable in both a hierarchical display (where parent/child or sibling relationships exist) and a non-hierarchical display of associated notes.

Discussion: A strength of the original zettelkasten paper system was that one was not forced into thinking about the notes as having any kind of a strict hierarchy. This feature must be preserved in the new system. The apparently hierarchical identity coding was mainly for locating notes in the note boxes. However, notes near each other were more likely to relate to each other.

It would be possible to have parent/child relationship between notes that were not located near each other, but having them close together tends to make them more available when working on a subset of notes.

Requirement: It must be possible to add additional types of displays besides a basic parent/child.style.

Discussion: This should not be taken to imply that any arbitrary display idea should be easy or even feasible to implement. It is intended to indicate that other display styles than a straight parent/child hierarchical display will probably be found to be desirable, and that the system should make it possible to implement at least some kinds.

Display Styles

In Leo, the most obvious way to display subsets of notes would be to clone them and move the clones under a single organizing node. This collection could be ephemeral or permanent as the user desires.

For a non-hierarchical display, the simplest way would be to have all the notes (or their clones) as siblings under a single organizing node.

LeoVue is one system that makes possible coordination with browser-based displays, some of which can be be interactive so that actions in the browser can be reflected back to the Leo file. There are probably other such systems.

This is one way in which new display kinds could be created, ones that Leo's panes and display mechanisms may be less suited for. The cost, aside from the effort of implementation, would be that a web server would have to be involved, most likely on the user's computer. However, such relatively simple personal servers are not hard to install and get working.