From ab857845b2d87e39e904ceb80c78a69e1a7dee5c Mon Sep 17 00:00:00 2001 From: Niklas Mollenhauer Date: Sun, 29 Oct 2017 12:31:21 +0100 Subject: [PATCH] dot: add page (#1578) --- pages/common/dot.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 pages/common/dot.md diff --git a/pages/common/dot.md b/pages/common/dot.md new file mode 100644 index 0000000000..d08b711eac --- /dev/null +++ b/pages/common/dot.md @@ -0,0 +1,11 @@ +# dot + +> A command-line tool to produce layered drawings of directed graphs. + +- Render an image file and determine output filename based on input filename and selected format: + +`dot -Tpng -O {{path/to/file.dot}}` + +- Create an SVG from DOT file: + +`dot -Tsvg -o{{path/to/out_file.svg}} {{path/to/file.dot}}`