Secure Your Answers
The "correct" answer is secured by our appeal system. If you're unhappy with the accepted answer,
you can make an appeal and have an admin review it.
More Info
%% Initialize top-down flowchart with some custom styling
graph TD
%% Define style for main nodes
style B fill:#FFF2CC,stroke:#D6B656,stroke-width:2px
style C fill:#F8CECC,stroke:#B85450,stroke-width:2px
style D fill:#F8CECC,stroke:#B85450,stroke-width:2px
style E fill:#DAE8FC,stroke:#6C8EBF,stroke-width:2px
style F fill:#DAE8FC,stroke:#6C8EBF,stroke-width:2px
%% Define nodes and edges
B[You post an answer to a question] --> B1[Your answer is not accepted after the question has expired]
B1 --> C[You have 48 hours to make an appeal]
C --> D[Your appeal is accepted by an admin]
C --> E[Your appeal is rejected by an admin]
D --> F[Your answer is accepted and you receive the bounty]
%% Style for decision nodes
style C fill:#F8CECC,stroke:#B85450,stroke-width:2px,stroke-dasharray: 5
style D fill:#F8CECC,stroke:#B85450,stroke-width:2px,stroke-dasharray: 5
%% Style for text alignment
classDef alignText text-align:center,font-size:14px
class A,B,C,D,E,F alignText