blob: 5eb801de7c623b3ed3a926505e965fcc76941c8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# -*- mode: snippet -*-
# name: digraph
# key: <dg
# keybinding : keybinding
# expand-env : ()
# contributor :
# expand-env : ()
# --
#+begin_src dot :file images/${1:1}.png
digraph $1 {
rankdir=LR;
node [shape = doublecircle]; A;
node [shape = point ]; qi
node [shape = circle];
$0
}
#+end_src
|