diff --git a/readme.md b/readme.md
index 86ebca26c375db3c0cb0d30a0dd1e508dab564b0..0629ac26ed51a28512db1afc36f166de5e480546 100644
--- a/readme.md
+++ b/readme.md
@@ -26,18 +26,18 @@ Installs and initializes a local database. Currently supported:
 ### Setup Python for Development
 Runs a few separate setup tasks, in order:
 * Adds the "deadsnakes" ppa (`sudo add-apt-repository ppa:deadsnakes/ppa`) if not present on system.
-** This allows easily and cleanly installing different Python versions on the system.
-** Not sure if I'd recommend this ppa for production use, as it might not always have the latest security fixes as soon
-   as possible. But it's certainly useful and convienent for local development purposes.
+    * This allows easily and cleanly installing different Python versions on the system.
+    * Not sure if I'd recommend this ppa for production use, as it might not always have the latest security fixes as
+    soon as possible. But it's certainly useful and convienent for local development purposes.
 * Installs Python3.7, Python3.8, Python3.9, and Python3.10 on the system, if not already present.
 * Installs and configures [PipEnv](https://pipenv.pypa.io/en/latest/) if not already present.
-** See also [PipEnv Notes](https://wiki.brandon-rodriguez.com/Python/PipEnv) for usage.
+    * See also [PipEnv Notes](https://wiki.brandon-rodriguez.com/Python/PipEnv) for usage.
 * Updates the standard cd command:
-** Changing into a directory with the folders ".env" or ".venv" will try to automatically load that as the active Python
-   virtual environment.
-** Changing out of that same directory will deactivate the current Python virtual environment.
-** See https://git.brandon-rodriguez.com/python/example_projects/virtual_environments/-/blob/master/helper_script.sh for
-   full script.
+    * Changing into a directory with the folders ".env" or ".venv" will try to automatically load that as the active
+    Python virtual environment.
+    * Changing out of that same directory will deactivate the current Python virtual environment.
+    * See https://git.brandon-rodriguez.com/python/example_projects/virtual_environments/-/blob/master/helper_script.sh
+    for full script.
 
 
 ### Install/Update Npm & NodeJs