From 4da6f7998f06fb28a9ae7d23f2795a82b0d16f3c Mon Sep 17 00:00:00 2001 From: MagdaPuch Date: Mon, 2 Sep 2024 13:37:00 +0200 Subject: [PATCH] Redesign Readme.md --- Readme.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Readme.md b/Readme.md index 5e52c83..27ae865 100644 --- a/Readme.md +++ b/Readme.md @@ -16,16 +16,16 @@ Config Maker is a config manager to use for your interactive CLI. ## 📤  How Values Are Fetched ```mermaid -graph LR - A[Option from the Command Line] --> AY[Exists] - AY --> R[Return Value] +flowchart TD + A[Option from the Command Line] --Present--> R[Return Value] A --Not Present---> - D[Environment Variable] --> AY + D[Environment Variable] --Present--> R D --Not Present---> - E[In Config File] --> AY + E[Variable In Config File] --Present--> R E --Not Present---> - F[Prompt for the Input] --> R + F[Prompt User for Input] --> R + style R fill:#244d0e ```