[graphviz]
[plantuml,alice-bob]
....
alice -> bob
....
results in:
alice -> bob
[graphviz]
....
digraph foo {
node [style=rounded]
node1 [shape=box]
node2 [fillcolor=yellow, style="rounded,filled", shape=diamond]
node3 [shape=record, label="{ a | b | c }"]
node1 -> node2 -> node3
}
....
results in:
digraph foo { node [style=rounded] node1 [shape=box] node2 [fillcolor=yellow, style="rounded,filled", shape=diamond] node3 [shape=record, label="{ a | b | c }"] node1 -> node2 -> node3 }
-
Edgar Allen Poe
-
Sheri S. Tepper
-
Bill Bryson
Edgar Allan Poe (/poʊ/; born Edgar Poe; Ja nuary 19, 1809 – October 7, 1849) was an American writer, editor, and literary critic.
* Im
* a
* List
results in:
-
Im
-
a
-
List
. Step 1
. Step 2
.. Step 2a
.. Step 2b
. Step 3
results in:
-
Step 1
-
Step 2
-
Step 2a
-
Step 2b
-
-
Step 3
[source, clojure]
----
(def lazy-fib
(concat
[0 1]
((fn rfib [a b]
(lazy-cons (+ a b) (rfib b (+ a b)))) 0 1)))
----
results in:
(def lazy-fib
(concat
[0 1]
((fn rfib [a b]
(lazy-cons (+ a b) (rfib b (+ a b)))) 0 1)))
[%header, cols=2*]
|===
|Character
|Seen in
|Donald Duck
|Mickey Mouse
|===
results in:
Character | Seen in |
---|---|
Donald Duck |
Mickey Mouse |