diff options
author | rfjakob | 2017-03-01 23:31:03 +0100 |
---|---|---|
committer | GitHub | 2017-03-01 23:31:03 +0100 |
commit | c304626a475cbedbafea0c2f1a1d1b9cfef9bdde (patch) | |
tree | 80e846c2659b0eaa0a3898ddde06cbdac4cf642d | |
parent | 954aa169cc49ec1f6a935fc97f2f0f58a834492f (diff) |
CLI_ABI: smaller markdown subheadings
The old ones were rendered by github almost as big as the parent headings.
-rw-r--r-- | Documentation/CLI_ABI.md | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Documentation/CLI_ABI.md b/Documentation/CLI_ABI.md index 6930e83..efdf718 100644 --- a/Documentation/CLI_ABI.md +++ b/Documentation/CLI_ABI.md @@ -20,7 +20,7 @@ General Initialize Filesystem --------------------- -### Bash example +#### Bash example $ cat mypassword.txt | gocryptfs -init -q -- CIPHERDIR @@ -28,34 +28,34 @@ Content of "mypassword.txt": mypassword1234 -### What you have to pipe to gocryptfs +#### What you have to pipe to gocryptfs 1. Password 2. Optional newline -### Notes +#### Notes 1. The CIPHERDIR directory must exist and be empty Mount ----- -### Bash example +#### Bash example $ 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". -### Notes +#### Notes 1. The MOUNTPOINT directory must exist and be empty. Change Password --------------- -### Bash example +#### Bash example $ cat change.txt | gocryptfs -passwd -q -- CIPHERDIR @@ -64,7 +64,7 @@ Content of "change.txt": mypassword1234 newpassword9876 -### What you have to pipe to gocryptfs +#### What you have to pipe to gocryptfs 1. Old password 2. Newline |