From 4172b5865631af42da1aa1ca2b08cbb0f1c52fd5 Mon Sep 17 00:00:00 2001 From: Ilan Cosman Date: Mon, 25 Sep 2023 15:19:05 -0700 Subject: [PATCH] Fix mermaid graph --- ARCHITECTURE.md | 52 ++++++++++++++++++++++++------------------------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/ARCHITECTURE.md b/ARCHITECTURE.md index 12d505b4..44e431d4 100644 --- a/ARCHITECTURE.md +++ b/ARCHITECTURE.md @@ -5,44 +5,44 @@ title: Tide Configure Flowchart flowchart TD prompt_connection_andor_frame_color["prompt_connection_andor_frame_color -(skipped if 16 color, or if there is no frame and no prompt connection)"] +(skipped if 16 color, or if there is no frame and no prompt connection)"]; -Style[style] --> prompt_colors +Style[style] --> prompt_colors; -prompt_colors -- "16 colors" --> show_time -prompt_colors -- "True Color \n lean" --> show_time -prompt_colors -- "True Color \n rainbow" --> show_time -prompt_colors -- "True Color \n classic" --> classic_prompt_color +prompt_colors -- "16 colors" --> show_time; +prompt_colors -- "True Color \n lean" --> show_time; +prompt_colors -- "True Color \n rainbow" --> show_time; +prompt_colors -- "True Color \n classic" --> classic_prompt_color; -classic_prompt_color --> show_time +classic_prompt_color --> show_time; -show_time -- "lean" --> lean_prompt_height -show_time -- "classic" --> classic_prompt_separators -show_time -- "rainbow" --> rainbow_prompt_separators +show_time -- "lean" --> lean_prompt_height; +show_time -- "classic" --> classic_prompt_separators; +show_time -- "rainbow" --> rainbow_prompt_separators; -lean_prompt_height -- "One Line" --> prompt_connection_andor_frame_color -lean_prompt_height -- "Two Line" --> prompt_connection +lean_prompt_height -- "One Line" --> prompt_connection_andor_frame_color; +lean_prompt_height -- "Two Line" --> prompt_connection; -classic_prompt_separators --> powerline_prompt_heads -rainbow_prompt_separators --> powerline_prompt_heads +classic_prompt_separators --> powerline_prompt_heads; +rainbow_prompt_separators --> powerline_prompt_heads; -powerline_prompt_heads --> powerline_prompt_tails -powerline_prompt_tails --> powerline_prompt_style +powerline_prompt_heads --> powerline_prompt_tails; +powerline_prompt_tails --> powerline_prompt_style; -powerline_prompt_style -- "One Line" --> prompt_connection_andor_frame_color -powerline_prompt_style -- "Two Line" --> prompt_connection +powerline_prompt_style -- "One Line" --> prompt_connection_andor_frame_color; +powerline_prompt_style -- "Two Line" --> prompt_connection; -prompt_connection -- "lean" --> prompt_connection_andor_frame_color -prompt_connection -- "classic" --> powerline_prompt_right_frame -prompt_connection -- "rainbow" --> powerline_prompt_right_frame +prompt_connection -- "lean" --> prompt_connection_andor_frame_color; +prompt_connection -- "classic" --> powerline_prompt_frame; +prompt_connection -- "rainbow" --> powerline_prompt_frame; -powerline_prompt_right_frame --> prompt_connection_andor_frame_color +powerline_prompt_frame --> prompt_connection_andor_frame_color; -prompt_connection_andor_frame_color --> prompt_spacing +prompt_connection_andor_frame_color --> prompt_spacing; -prompt_spacing --> icons +prompt_spacing --> icons; -icons --> transient +icons --> transient; -transient --> finish +transient --> finish; ```