aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/README.md b/README.md
index 335ee58..23a40d5 100644
--- a/README.md
+++ b/README.md
@@ -85,6 +85,23 @@ To make config options persistent, set them in `~/.ssb/config`, e.g.:
"showPrivates": true,
"previewVotes": true,
"ooo": true,
+ "nav": [
+ "new",
+ "public",
+ "private",
+ "mentions",
+ "peers",
+ "status",
+ "channels",
+ "tags",
+ "friends",
+ "search"
+ "live",
+ "compose",
+ "emojis",
+ "self",
+ "searchbox"
+ ]
}
}
```
@@ -105,6 +122,7 @@ To make config options persistent, set them in `~/.ssb/config`, e.g.:
- `previewContacts`: Whether to preview creating contact/(un)follow/block messages (`true`) or publish them immediately (`false`). default: `false`
- `ooo`: if true, use `ssb-ooo` to try to fetch missing messages in threads. also can set per-request with query string `?ooo=1`. default: `false`
`codeInTextareas`: if `true`, render markdown code blocks in textareas. if `false`, render them in `pre` tags. default: `false`
+- `nav`: array of nav links. Each item may be a string, object or special value. Special values are `"searchbox"` and `"self"`, which are the search field box, and link to the current feed id's page, respectively. Any other string is interpretted to be a link to the page of that name prefixed with a forward slash. An object may have properties `name` and `url`, and that will be interpretted as a link with given name and URL (with `toUrl` conversions applied). default is the list in the readme above.
## TODO