Stackedit/public/res/html/umlDiagramsSettingsBlock.html

34 lines
1.1 KiB
HTML
Raw Normal View History

2014-04-27 20:10:30 +00:00
<p>Creates UML diagrams from plain text description.</p>
2014-11-02 17:17:42 +00:00
<div class="form-horizontal">
<div class="form-group">
<label class="col-sm-4 control-label" for="textarea-umldiagram-flowchart-options">Flow charts options (JSON)
</label>
<div class="col-sm-7">
<textarea id="textarea-umldiagram-flowchart-options" class="form-control"></textarea>
</div>
</div>
</div>
<br>
2014-04-27 20:10:30 +00:00
<p>Sequence diagrams:</p>
<pre><div class="help-block pull-right"><a target="_blank" href="http://bramp.github.io/js-sequence-diagrams/">More info</a></div><code>```sequence
Alice->Bob: Hello Bob, how are you?
Bob-->Alice: I am good thanks!
```</code>
</pre>
<p>Flow charts:</p>
<pre><div class="help-block pull-right"><a target="_blank" href="http://adrai.github.io/flowchart.js/">More info</a></div><code>```flow
st=>start: Start
e=>end
op=>operation: My Operation
cond=>condition: Yes or No?
st->op->cond
cond(yes)->e
cond(no)->op
```</code>
</pre>
<blockquote>
2014-10-12 17:57:58 +00:00
<p><b>Note:</b> Markdown Extra extension has to be enabled with GFM fenced code blocks option.</p>
2014-04-27 20:10:30 +00:00
</blockquote>