File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change @@ -313,11 +313,45 @@ GABc dedB|dedB dedB|c2ec B2dB|A2F2 G4:|
313
313
g2gf g2Bd|g2f2 e2d2|c2ec B2dB|A2F2 G4:|
314
314
```
315
315
316
+ ### PlantUML
317
+ ``` plantuml
318
+ start
319
+ if (condition A) then (yes)
320
+ :Text 1;
321
+ elseif (condition B) then (yes)
322
+ :Text 2;
323
+ stop
324
+ elseif (condition C) then (yes)
325
+ :Text 3;
326
+ elseif (condition D) then (yes)
327
+ :Text 4;
328
+ else (nothing)
329
+ :Text else;
330
+ endif
331
+ stop
332
+ ```
333
+
334
+ ### Vega-Lite
335
+ ``` vega
336
+ {
337
+ "$schema": "https://vega.github.io/schema/vega-lite/v3.json",
338
+ "data": {"url": "https://vega.github.io/editor/data/barley.json"},
339
+ "mark": "bar",
340
+ "encoding": {
341
+ "x": {"aggregate": "sum", "field": "yield", "type": "quantitative"},
342
+ "y": {"field": "variety", "type": "nominal"},
343
+ "color": {"field": "site", "type": "nominal"}
344
+ }
345
+ }
346
+ ```
347
+
316
348
> More information about ** sequence diagrams** syntax [ here] ( http://bramp.github.io/js-sequence-diagrams/ ) .
317
349
> More information about ** flow charts** syntax [ here] ( http://adrai.github.io/flowchart.js/ ) .
318
350
> More information about ** graphviz** syntax [ here] ( http://www.tonyballantyne.com/graphs.html )
319
351
> More information about ** mermaid** syntax [ here] ( http://knsv.github.io/mermaid )
320
352
> More information about ** abc** syntax [ here] ( http://abcnotation.com/learn )
353
+ > More information about ** plantuml** syntax [ here] ( http://plantuml.com/index )
354
+ > More information about ** vega** syntax [ here] ( https://vega.github.io/vega-lite/docs )
321
355
322
356
Alert Area
323
357
---
You can’t perform that action at this time.
0 commit comments