mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-12-24 00:50:28 +00:00
Docs updates
This commit is contained in:
parent
ba7b886067
commit
ffece485fe
@ -1,11 +1,12 @@
|
||||
title: How to use TiddlyWiki5 as a standalone HTML file with encryption
|
||||
tags: docs howto
|
||||
title: How to use TiddlyWiki5 as a standalone HTML file with encryption
|
||||
modified: 201304152154
|
||||
|
||||
[[TiddlyWiki5 Standalone Edition]] allows content to be encrypted using the [[Stanford JavaScript Crypto Library]].
|
||||
|
||||
1. Scroll to the bottom of the page where you should see the words "This wiki is not encrypted" and a button labelled "Set password"
|
||||
2. Click "Set password"
|
||||
3. Type a password and click the "Set" button (or use the enter key)
|
||||
4. The control panel should now say "This wiki is encrypted" with buttons for changing and clearing the password
|
||||
5. Save the wiki using the "Save" button in the left sidebar
|
||||
6. Optionally, open the saved file in a text editor and verify that your data is encrypted
|
||||
# Scroll to the bottom of the page where you should see the words "This wiki is not encrypted" and a button labelled "Set password"
|
||||
# Click "Set password"
|
||||
# Type a password and click the "Set" button (or use the enter key)
|
||||
# The control panel should now say "This wiki is encrypted" with buttons for changing and clearing the password
|
||||
# Save the wiki using the "Save" button in the left sidebar
|
||||
# Optionally, open the saved file in a text editor and verify that your data is encrypted
|
||||
|
@ -1,5 +1,6 @@
|
||||
title: PluginMechanism
|
||||
tags: docs mechanism
|
||||
title: PluginMechanism
|
||||
modified: 201304152135
|
||||
|
||||
[[Plugins]] are bundles of tiddlers that are distributed and managed as a single unit by being packed into a single JSON tiddler. If a tiddler isn't found in the main store, then the loaded plugins are searched for it instead.
|
||||
|
||||
@ -65,20 +66,13 @@ A folder containing an exploded TiddlyWiki can contain a `tiddlywiki.info` file
|
||||
```
|
||||
{
|
||||
"plugins": [
|
||||
"slider",
|
||||
"chooser",
|
||||
"tiddlytools/superslider",
|
||||
"../../myplugins/specialone",
|
||||
"/mylib/another",
|
||||
"tiddlywiki/slider",
|
||||
"tiddlytools/chooser"
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
Plugins can be identified in several ways:
|
||||
|
||||
* Names that do not contain a slash are interpreted as the name of a TiddlyWiki core plugin (ie, `$:/plugins/tiddlywiki/<name>`)
|
||||
* Names that start with a slash or dot are interpreted as pathnames to a plugin file or folder
|
||||
* Names that contain a single slash that is not at the start or end are interpreted as names of plugins from the core plugin library (ie, `$:/plugins/<publisher/name>`)
|
||||
Plugins names refer to plugin folders listed in TiddlyWiki5's root `plugins` folder.
|
||||
|
||||
Plugins can also be included manually by copying them into the `plugins` subfolder of the wiki.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user