From cc647b922f938732ec83f401196eb3fa220309dc Mon Sep 17 00:00:00 2001 From: Brian Majewski Date: Tue, 24 Mar 2026 07:04:09 -0700 Subject: [PATCH] Update README to clarify code block formatting for diagrams and shell commands - Changed code block syntax from generic to specific types (`diagram` and `shell`) for better readability. - Enhanced the presentation of secrets storage and organization examples. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1fd37bd..f7f03db 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ People end up sharing secrets over Slack, email, or sticky notes. When a key cha `secrets` encrypts your secret files and stores them in a separate, private git repository. Only someone with the encryption key can read them. -``` +```diagram Your project (e.g. ~/myapp/) Your secrets store (~/.secrets/) ┌──────────────────────────┐ ┌──────────────────────────┐ │ .env (plaintext)│──encrypt─▶│ myapp/.env.age (encrypted)│──sync──▶ GitHub (private) @@ -198,7 +198,7 @@ secrets run -w turbo dev # pull all, run command, clear all on exit Inside `~/.secrets/`, workspace secrets are organized by path: -``` +```shell ~/.secrets/ myapp/ .env.age # root project secrets