From a55b9d1be800a3457477716cdf30a81b61a7bd34 Mon Sep 17 00:00:00 2001
From: Jan Frenzel <jan.frenzel@tu-dresden.de>
Date: Wed, 22 Sep 2021 10:41:09 +0200
Subject: [PATCH] Apply 1 suggestion(s) to 1 file(s)

---
 .../docs/archive/install_jupyter.md                 | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/doc.zih.tu-dresden.de/docs/archive/install_jupyter.md b/doc.zih.tu-dresden.de/docs/archive/install_jupyter.md
index e0812b26d..7140277dc 100644
--- a/doc.zih.tu-dresden.de/docs/archive/install_jupyter.md
+++ b/doc.zih.tu-dresden.de/docs/archive/install_jupyter.md
@@ -111,14 +111,17 @@ Fill in the form with decent values.
 Possible entries for your Jupyter configuration (`.jupyter/jupyter_notebook*config.py*`).
 
 ```Bash
-c.NotebookApp.certfile = u'<path-to-cert>/mycert.pem' c.NotebookApp.keyfile =
-u'<path-to-cert>/mykey.key'
+c.NotebookApp.certfile = u'<path-to-cert>/mycert.pem'
+c.NotebookApp.keyfile = u'<path-to-cert>/mykey.key'
 
-# set ip to '*' otherwise server is bound to localhost only c.NotebookApp.ip = '*'
+# set ip to '*' otherwise server is bound to localhost only
+c.NotebookApp.ip = '*'
 c.NotebookApp.open_browser = False
 
-# copy hashed password from the jupyter_notebook_config.json c.NotebookApp.password = u'<your
-hashed password here>' c.NotebookApp.port = 9999 c.NotebookApp.allow_remote_access = True
+# copy hashed password from the jupyter_notebook_config.json
+c.NotebookApp.password = u'<your hashed password here>'
+c.NotebookApp.port = 9999
+c.NotebookApp.allow_remote_access = True
 ```
 
 Note: `<path-to-cert>` - path to key and certificate files, for example:
-- 
GitLab