diff --git a/static/base.css b/static/base.css
index c7c5bcd..4543e6a 100644
--- a/static/base.css
+++ b/static/base.css
@@ -1295,6 +1295,10 @@ select {
align-items: center;
}
+.overflow-auto {
+ overflow: auto;
+}
+
.truncate {
overflow: hidden;
text-overflow: ellipsis;
diff --git a/tmpl/help.html b/tmpl/help.html
index 7b66b61..efdcc7b 100644
--- a/tmpl/help.html
+++ b/tmpl/help.html
@@ -81,28 +81,30 @@
Advanced destination links
Examples
-
-
- | Include path in query |
- {{go}}/search |
- {{`https://cloudsearch.google.com/{{if .Path}}cloudsearch/search?q={{QueryEscape .Path}}{{end}}`}} |
-
-
- | Include path in destination path |
- {{go}}/slack |
- {{`https://company.slack.com/{{if .Path}}channels/{{PathEscape .Path}}{{end}}`}} |
-
-
- | Include path in hostname |
- {{go}}/varz |
- {{`http://{{if .Path}}{{.Path}}{{else}}host{{end}}.example/debug/varz`}} |
-
-
- | Include today's date in wiki page |
- {{go}}/today |
- {{`http://wiki/{{.Now.Format "01-02-2006"}}`}} |
-
-
+
+
+
+ | Include path in query |
+ {{go}}/search |
+ {{`https://cloudsearch.google.com/{{if .Path}}cloudsearch/search?q={{QueryEscape .Path}}{{end}}`}} |
+
+
+ | Include path in destination path |
+ {{go}}/slack |
+ {{`https://company.slack.com/{{if .Path}}channels/{{PathEscape .Path}}{{end}}`}} |
+
+
+ | Include path in hostname |
+ {{go}}/varz |
+ {{`http://{{if .Path}}{{.Path}}{{else}}host{{end}}.example/debug/varz`}} |
+
+
+ | Include today's date in wiki page |
+ {{go}}/today |
+ {{`http://wiki/{{.Now.Format "01-02-2006"}}`}} |
+
+
+
Application Programming Interface (API)