CLI_ABI: smaller markdown subheadings

The old ones were rendered by github almost as big as the parent headings.
This commit is contained in:
rfjakob 2017-03-01 23:31:03 +01:00 committed by GitHub
parent 954aa169cc
commit c304626a47
1 changed files with 8 additions and 8 deletions

View File

@ -20,7 +20,7 @@ General
Initialize Filesystem Initialize Filesystem
--------------------- ---------------------
### Bash example #### Bash example
$ cat mypassword.txt | gocryptfs -init -q -- CIPHERDIR $ cat mypassword.txt | gocryptfs -init -q -- CIPHERDIR
@ -28,34 +28,34 @@ Content of "mypassword.txt":
mypassword1234 mypassword1234
### What you have to pipe to gocryptfs #### What you have to pipe to gocryptfs
1. Password 1. Password
2. Optional newline 2. Optional newline
### Notes #### Notes
1. The CIPHERDIR directory must exist and be empty 1. The CIPHERDIR directory must exist and be empty
Mount Mount
----- -----
### Bash example #### Bash example
$ cat mypassword.txt | gocryptfs -q -- CIPHERDIR MOUNTPOINT $ cat mypassword.txt | gocryptfs -q -- CIPHERDIR MOUNTPOINT
### What you have to pipe to gocryptfs #### What you have to pipe to gocryptfs
Same as for "Initialize Filesystem". Same as for "Initialize Filesystem".
### Notes #### Notes
1. The MOUNTPOINT directory must exist and be empty. 1. The MOUNTPOINT directory must exist and be empty.
Change Password Change Password
--------------- ---------------
### Bash example #### Bash example
$ cat change.txt | gocryptfs -passwd -q -- CIPHERDIR $ cat change.txt | gocryptfs -passwd -q -- CIPHERDIR
@ -64,7 +64,7 @@ Content of "change.txt":
mypassword1234 mypassword1234
newpassword9876 newpassword9876
### What you have to pipe to gocryptfs #### What you have to pipe to gocryptfs
1. Old password 1. Old password
2. Newline 2. Newline