Note: Hope is superceded by Cobalt
It is currently a proof of concept prototype to see where the ideas of Ted Nelson can lead us.
Ted Nelson came up with the term Hypertext and famously defined 17 rules that a Hypertext system should conform to. His attempts to implement these in his Xanadu system haven't resulted in a finished system. But what if it had?
Hope is an attempt to implement one small part of Ted's Xanadu dream: Annotation based markup. Instead of mixing the markup with the content, Hope keeps them rigorously apart. The content is nothing more than plaintext. The markup is in a seperate text file, only referencing the content using character ranges.
The content and markup must be kept in sync. This is the main drawback I found so far: you will need a specific editing program to edit content and markup, you cannot just use a text editor. So I am working on making one, you are looking at it right now.
On the left you can edit the content and below it the markup. On the right is the rendered output and below it the html source. The mouse is ignored for now, but keyboard cursor movements are followed. The only commands implemented for now are ctrl-b for bold and ctrl-i for italic.
You can however add any markup you want in the markup textarea, as long as it is a valid HTML tag, whithout the < and > characters.
If you are interested in researching this concept, grab the code from github and start experimenting.