mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-04 11:15:56 +00:00
Fixes: RIPD-1521 Switch to pure doxygen HTML for developer docs. Remove docca/boostbook system. Convert consensus document to markdown. Add existing markdown files to doxygen input set. Fix some image paths and scale images for use with MD links. Rename/cleanup some files for consistency. Add pipeline logic for windows slaves. Add ninja and parallel test run option. Add make doc target build in build-and-test.sh. Cleanup README files. Add nounity windows build. Add link to jenkins summary table. Add rippled_classic build (win). Improve formatting of summary table.
25 lines
590 B
Plaintext
25 lines
590 B
Plaintext
/*!
|
|
\page somestatechart Example state diagram
|
|
|
|
\startuml SomeState "my state diagram"
|
|
scale 600 width
|
|
|
|
[*] -> State1
|
|
State1 --> State2 : Succeeded
|
|
State1 --> [*] : Aborted
|
|
State2 --> State3 : Succeeded
|
|
State2 --> [*] : Aborted
|
|
state State3 {
|
|
state "Accumulate Enough Data\nLong State Name" as long1
|
|
long1 : Just a test
|
|
[*] --> long1
|
|
long1 --> long1 : New Data
|
|
long1 --> ProcessData : Enough Data
|
|
}
|
|
State3 --> State3 : Failed
|
|
State3 --> [*] : Succeeded / Save Result
|
|
State3 --> [*] : Aborted
|
|
|
|
\enduml
|
|
*/
|