summaryrefslogtreecommitdiff
path: root/pandoc-fable-filter
blob: fe4ccedc425c692037c5df294e8b1a0aa2ece396 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#!/usr/bin/env python3

"""
Pandoc filter to process code blocks with class "plantuml" into
plant-generated images.
Needs `plantuml.jar` from http://plantuml.com/.
"""

import os
import sys
import subprocess

from pandocfilters import toJSONFilter, Para, Image
from pandocfilters import get_filename4code, get_caption, get_extension


kinds = {
    'plantuml': {
        'tag': 'plantuml',
        'argv': lambda src, dest: [
            'plantuml', '-tsvg', '-o', '.', src,
        ],
        'ext': '.uml',
        'prefix': b'@startuml\n',
        'suffix': b'\n@enduml\n',
    },
    'dot': {
        'tag': 'dot',
        'argv': lambda src, dest: [
            'dot', '-Tsvg', '-o', dest, src, '-Nfontname=Bitstream Charter',
            '-Nfontsize=10',
        ],
        'ext': '.dot',
        'prefix': b'digraph foo {\n',
        'suffix': b'}\n',
    },
}


def process_to_svg(kind, ident, classes, keyvals, code, format_):
    caption, typef, keyvals = get_caption(keyvals)

    filename = get_filename4code(kind['tag'], code)
    filetype = get_extension(format_, "png", html="svg", latex="svg")

    src = filename + kind['ext']
    dest = filename + '.' + filetype

    if not os.path.isfile(dest):
        txt = code.encode(sys.getfilesystemencoding())
        txt = kind['prefix'] + txt + kind['suffix']
        with open(src, "wb") as f:
            f.write(txt)

        func = kind['argv']
        argv = func(src, dest)
        subprocess.check_call(argv)
        sys.stderr.write('Created image ' + dest + '\n')

    return Para([Image([ident, [], keyvals], caption, [dest, typef])])


def combo(key, value, format_, _):
    if key == 'CodeBlock':
        [[ident, classes, keyvals], code] = value

        for tag, kind in kinds.items():
            if tag in classes:
                return process_to_svg(
                    kind, ident, classes, keyvals, code, format_)


def main():
    toJSONFilter(combo)


if __name__ == "__main__":
    main()