From f47b0adc27bdeb7a2baee80097c5c7eb491b0644 Mon Sep 17 00:00:00 2001 From: Satya Benson Date: Tue, 15 Aug 2023 20:56:19 +0000 Subject: [PATCH] fix list numbering error added indentation to pre blocks so that it doesn't mess up the list numbering --- wiki/pages/ssh.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/wiki/pages/ssh.md b/wiki/pages/ssh.md index 293e3af..aab92bd 100644 --- a/wiki/pages/ssh.md +++ b/wiki/pages/ssh.md @@ -117,15 +117,15 @@ pick your fighter: [[mac](#mac)] | [[windows](#windows-10)] | [[linux](#linux)] 1. create your .ssh directory: -```bash -mkdir -m 700 ~/.ssh -``` + ```bash + mkdir -m 700 ~/.ssh + ``` 1. create your keys: -```bash -ssh-keygen -t ed25519 -a 100 -``` + ```bash + ssh-keygen -t ed25519 -a 100 + ``` 1. if you press enter to accept the defaults, your public and private key will be located at `~/.ssh/id_ed25519.pub` and `~/.ssh/id_ed25519` respectively