Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nichtich/ditaa-markdown
process ditaa diagrams embedded in pandoc markdown
https://github.com/nichtich/ditaa-markdown
Last synced: about 2 months ago
JSON representation
process ditaa diagrams embedded in pandoc markdown
- Host: GitHub
- URL: https://github.com/nichtich/ditaa-markdown
- Owner: nichtich
- Created: 2012-01-15T14:20:21.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2015-07-10T18:28:38.000Z (over 9 years ago)
- Last Synced: 2024-10-15T13:24:30.345Z (2 months ago)
- Language: Perl
- Homepage:
- Size: 460 KB
- Stars: 68
- Watchers: 5
- Forks: 7
- Open Issues: 4
-
Metadata Files:
- Readme: README.html
Awesome Lists containing this project
README
Embedded diagrams in pandoc's markdownEmbedded diagrams in pandoc's markdown
Jakob Voss
Introduction
Pandoc is a Haskell program to convert between numerous document markup formats. It comes with an abstract document model and a serialization in extended markdown syntax. Pandoc was created by John MacFarlane and it is available as Open Source at
http://johnmacfarlane.net/pandoc/
.mddia is a simple, dirty Perl script to preprocess and convert diagrams embedded in pandoc's markdown syntax. This is a temporary hack because of lacking Haskell skills. Anyway, the script may be rewritten, but the underlying principles and data format will stay.1 Up to now the script supports the following diagram types:
- ditaa
-
a java program created by Stathis Sideris to convert diagrams in ASCII art to PNG images. It is available at
http://ditaa.sourceforge.net/
. Mikael Brännström created an extension to convert diagrams to EPS, available athttp://ditaa-addons.sourceforge.net/
. - dot
-
GraphViz's graph description language. See
http://en.wikipedia.org/wiki/DOT_language
for more information. - rdfdot
-
RDF graphs based on RDF/Turtle. The command line program
rdfdot
is included in the CPAN package RDF::Trine::Exporter::GraphViz.
Ditaa is bundled with this script, while GraphViz and rdfdot must be installed manually. This script, pandoc, ditaa, dot, and rdfdot are all licensed as free software.
Usage
mddia acts acts as filter that makes use of diagram creation programs to process a markdown source while emitting some image files.
Image files can be emitted in PNG format (the default) or in PDF format. You can choose the image format by command line option -pdf
or -png
. To create HTML from markdown via pandoc, call for instance:
./mddia README.md | pandoc -s -t html > README.html
Or to create PDF:
./mddia -pdf README.md | markdown2pdf -o README.pdf
Diagrams are embedded in Markdown as source code blocks. This way your documents are valid and processable even without mddia
(your diagrams will only show up as source code). For instance the image above was created with this code block:
~~~~~ {.ditaa .no-separation}
+-----------------+ +--------+ +--------------------+
| markdown source |------>| mdddia |------*--->| processed markdown |
+-----------------+ +--------+ | +--------------------+
| \--->| image files |
+------------------+ +--------------------+
| diagram creation |
+------------------+
| ditaa/dot/rdfdot |
+------------------+
~~~~~
All "class names" (the strings starting with a dot) after the diagram type are passed are argument to the diagram creation. For instance
~~~~~ {.ditaa .no-shadows .scale:0.4}
Is passed to ditaa
as --no-shadows --scale 0.4
.
Examples
Input source code
~~~~ {.dot .Grankdir:LR}
digraph {
A -> B -> C;
A -> C;
}
~~~~
~~~~ {.rdfdot}
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@base <http://example.com/> .
<alice> foaf:name "Alice" ;
foaf:knows [ foaf:name "Bob" ] .
~~~~
Generated diagrams
About
mddia is available at https://github.com/nichtich/ditaa-markdown
. Feel free to fork and extend under any free viral open source license. The files README.html and README.pdf in the repository may be out of date compared to the original README.md.
A better implementation would be based on pandoc's scripting API:
http://johnmacfarlane.net/pandoc/scripting.html
. See the dot plugin athttp://gitit.net/
for how to dot it. ↩