Fix minor formatting details in README
Marco Ricci

Marco Ricci commited on 2024-07-14 10:57:37
Zeige 1 geänderte Dateien mit 6 Einfügungen und 6 Löschungen.

... ...
@@ -18,9 +18,9 @@ The service name and constraints themselves also need not be kept secret; the la
18 18
 
19 19
 ### With `pip`
20 20
 
21
-```console
21
+```` shell-session
22 22
 $ pip install derivepassphrase
23
-```
23
+````
24 24
 
25 25
 ### Manually
26 26
 
... ...
@@ -31,19 +31,19 @@ $ pip install derivepassphrase
31 31
 
32 32
 ## Quick Usage
33 33
 
34
-```console
34
+```` shell-session
35 35
 $ derivepassphrase -p --length 30 --upper 3 --lower 1 --number 2 --space 0 --symbol 0 my-email-account
36 36
 Passphrase: This passphrase is for demonstration purposes only.
37 37
 JKeet7GeBpxysOgdCEJo6UzmP8A0Ih
38
-```
38
+````
39 39
 
40 40
 Some time later…
41 41
 
42
-```console
42
+```` shell-session
43 43
 $ derivepassphrase -p --length 30 --upper 3 --lower 1 --number 2 --space 0 --symbol 0 my-email-account
44 44
 Passphrase: This passphrase is for demonstration purposes only.
45 45
 JKeet7GeBpxysOgdCEJo6UzmP8A0Ih
46
-```
46
+````
47 47
 
48 48
 (The user input `This passphrase is for demonstration purposes only.` for the passphrase prompt is not actually displayed on-screen.)
49 49
 
50 50