open-feature / spec

OpenFeature specification
https://openfeature.dev
Apache License 2.0
779 stars 36 forks source link

chore: replace some pngs with mermaid #272

Closed toddbaert closed 2 months ago

toddbaert commented 2 months ago

Just replaces some PNGs with mermaid.

This is nice because they can change color for the website, and they are more rigorous and maintainable (we already use mermaid in the spec).

old:

image

new:

flowchart LR
    A[Application] --> API(Evaluation API)
    API --> P[Provider]
    P --> FMS[(Flag Management System)]

image

flowchart LR
    B(('Before' stage)) ---> FE[Flag Evaluation]
    B -..->|Error| E
    FE ---> A(('After' stage))
    FE -..->|Error| E(('Error' stage))
    A ---> F(('Finally' stage))
    E -..-> F