summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorArtur <atnartur@users.noreply.github.com>2020-10-20 11:58:26 +0300
committerGitHub <noreply@github.com>2020-10-20 11:58:26 +0300
commitd12dc978428050dea73c58d226f68c3070b27b9f (patch)
tree51214dd311b24ec73149174663dee8e0603f62a3 /web
parent2595f1d77217e45c9bb9be0e1c907e99da85601e (diff)
Fix formatting source code blocks in custom dashboard page (#10050)
Diffstat (limited to 'web')
-rw-r--r--web/gui/custom/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/gui/custom/README.md b/web/gui/custom/README.md
index 94f2181d32..c1d4206cdb 100644
--- a/web/gui/custom/README.md
+++ b/web/gui/custom/README.md
@@ -183,14 +183,14 @@ by adding this fragment before loading it:
```html
<script>var netdataDontStart = true;</script>
-`"
+```
The above, will inform the `dashboard.js` to load everything, but not process the web page until you tell it to.
You can tell it to start processing the page, by running this javascript code:
```js
NETDATA.start();
-`"
+```
Be careful not to call the `NETDATA.start()` multiple times. Each call to this
function will spawn a new thread that will start refreshing the charts.