Fix formatting source code blocks in custom dashboard page (#10050)
Artur committed
Oct 20, 2020 at 11:58 UTC
d12dc978428050dea73c58d226f68c3070b27b9f
1 file changed
+2
-2
web/gui/custom/README.md
+2
-2
@@ -183,14 +183,14 @@ by adding this fragment before loading it:
183
184
```html
185
<script>var netdataDontStart = true;</script>
186
-`"
186
+```
187
188
The above, will inform the `dashboard.js` to load everything, but not process the web page until you tell it to.
189
You can tell it to start processing the page, by running this javascript code:
190
191
```js
192
NETDATA.start();
193
-`"
193
+```
194
195
Be careful not to call the `NETDATA.start()` multiple times. Each call to this
196
function will spawn a new thread that will start refreshing the charts.