diff --git a/editions/tw5.com/tiddlers/TiddlyWikiArchitecture.tid b/editions/tw5.com/tiddlers/TiddlyWikiArchitecture.tid index 0cec4d590..c7da7f521 100644 --- a/editions/tw5.com/tiddlers/TiddlyWikiArchitecture.tid +++ b/editions/tw5.com/tiddlers/TiddlyWikiArchitecture.tid @@ -2,8 +2,6 @@ title: TiddlyWikiArchitecture modifier: JeremyRuston tags: docs internals -! Overview - The heart of TiddlyWiki can be seen as an extensible representation transformation engine for text and images. Given the text of a tiddler and its associated ContentType, the engine can produce a rendering of the tiddler in a new ContentType. Furthermore, it can efficiently selectively update the rendering to track any changes in the tiddler or its dependents. The primary use of the engine is to convert raw `text/vnd.tiddlywiki` WikiText into a `text/html` or `text/plain` representation for display. The transclusion and templating features of WikiText allow the engine to also be used to generate TiddlyWiki HTML files from raw tiddlers. diff --git a/editions/tw5.com/tiddlers/mechanisms/BootMechanism.tid b/editions/tw5.com/tiddlers/mechanisms/BootMechanism.tid index ba8156735..023e1a3db 100644 --- a/editions/tw5.com/tiddlers/mechanisms/BootMechanism.tid +++ b/editions/tw5.com/tiddlers/mechanisms/BootMechanism.tid @@ -7,7 +7,7 @@ TiddlyWiki5 is based on a 1,000 line boot kernel that runs on node.js or in the The kernel boots just enough of the TiddlyWiki environment to allow it to load tiddlers and execute JavaScript modules. Plugin modules are written like `node.js` modules. -There are many [[different types of module|ModuleType]]: parsers, serializers, deserializers, macros etc. It goes much further than you might expect. For example, individual tiddler fields are modules, too: there's a module that knows how to handle the `tags` field, and another that knows how to handle the special behaviour of the `modified` and `created` fields. +There are many [[different types of module|ModuleType]]: parsers, deserializers, widgets etc. It goes much further than you might expect. For example, individual tiddler fields are modules, too: there's a module that knows how to handle the `tags` field, and another that knows how to handle the special behaviour of the `modified` and `created` fields. Some plugin modules have further sub-plugins: the wikitext parser, for instance, accepts rules as individual plugin modules.