---
title: Voice Notes Flow
config:
theme: base
themeVariables:
primaryColor: '#f0f0f0'
themeCSS: |
.nodeLabel {
font-weight: bold !important;
color: #ffffff
}
.node rect, .node circle, .node ellipse, .node polygon {
fill: #1E90FF !important;
stroke: none !important;
rx: 10px !important;
ry: 10px !important;
}
.edgeLabel {
color: #000000 !important;
}
---
flowchart TD
%% Legends
Start[Start]
Return[Return]
Collect[Collect Note]
Save[Save Notes]
Input[🔗 Voice Input of Note]
%% Flow
Start --> Input
Input --> |Input Occured| Collect
Input --> |Timeout Occured:
Retry| Start
Input --> |Exit Requested /
Error Occured| Save
Collect --> |Continue| Start
Save --> |Saved /
Exit Requested /
Error Occured| Return
click Input "input-flow.html"