From 7ff8c35d9af23d07b68716a04ea90fde6e87d013 Mon Sep 17 00:00:00 2001 From: Aaron Johnon Date: Thu, 1 Jul 2021 18:11:35 -0500 Subject: [PATCH] Added line breaks in long 'code' section comments --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2f5655b..b834c51 100644 --- a/README.md +++ b/README.md @@ -13,8 +13,12 @@ Not very easily with this early version, but that will be a thing later on. First, set up your Postgres DB that you intend to use. I recommend using UNICODE in case a player character insists on using diacritics, or of course, if your native language requires it. I use these options: ```sh -# Yes, I know some of these options are redundant, but I never remember which ones, it doesn't hurt, and DERPA is easy to remember. -# Please note that your DB password, like is often required, will be stored as plain text in the configuration file. DO NOT RE-USE YOUR PASSWORDS, especially here. +# Yes, I know some of these options are redundant, but I never +# remember which ones, it doesn't hurt, and DERPA is easy to remember. +# Please note that your DB password, like is often required, will be +# stored as plain text in the configuration file. +#### DO NOT RE-USE YOUR PASSWORDS, especially here. #### + createuser -DERPA [your_user] createdb -E UNICODE -O [your_user] dnd_bank ```