#+title: Simple babel example org file #+options: toc:nil num:nil * Drawing using ASCII #+begin_src ditaa :exports results :results file :file drawing.png +------------+ +-----------+ | | | | | | | | | Box 1 +------------>+ Box 2 | | | | | | | | | +------------+ +-----------+ #+end_src * Now using graphviz #+begin_src dot :exports results :results file :file anotherdiagram.png digraph G { rankdir = LR; node [shape="rectangle"]; one [label="Box 1"]; two [label="Box 2"]; one -> two; } #+end_src