hyperlink correction
[libreriscv.git] / openpower / pandoc_img.py
1 #!/usr/bin/env python3
2
3 import os
4 import subprocess
5 from pandocfilters import (toJSONFilter, RawInline, Space, Str, walk, Image,
6 Link)
7
8 """
9 Pandoc filter for Markdown that converts most endnotes into
10 Pandoc's inline notes. If input notes had multiple paragraphs,
11 the paragraphs are joined by a space. But if an input note
12 had any blocks other than paragraphs, the note is left as is.
13 """
14
15 #inkscape -z sv/bridge_phy.svg --export-png=bridge.png
16 out = open("/tmp/log.txt", "w")
17
18 def query(k, v, f, meta):
19 global inlines
20 if k == 'BlockQuote':
21 inlines.append(v)
22 elif isinstance(v, list):
23 if inlines and k == 'Para':
24 inlines.append(Space())
25 inlines.extend(v)
26 return v
27
28 def inlinenotes(k, v, f, meta):
29 out.write("k v f meta %s %s %s %s\n" % \
30 (repr(k), repr(v), repr(f), repr(meta)))
31 global inlines
32 inlines = []
33 if k == u'Image' and f == 'latex':
34 imgname = v[2][0]
35 out.write(" image %s\n" % (imgname))
36 # HACK! works only relative to openpower directory!
37 if imgname.startswith("/"):
38 imgname = ".." + imgname
39 png = imgname.replace(".svg", ".png")
40 png = os.path.split(png)[1]
41 png = "tex_out/%s" % png
42 subprocess.run(["inkscape", "-z", "-C", imgname,
43 "--export-png=%s" % png],
44 stdout=subprocess.PIPE)
45 v[2][0] = png
46 return Image(*v)
47 if k == 'Str' and f == 'latex':
48 # link page
49 if v.startswith("[[") and v.endswith("]]"):
50 link = v[2:-2]
51 if '|' in link:
52 link, ref = link.split("|")
53 return Link(['', [], []],
54 [Str(link)],
55 [ref, ''])
56 out.write(" link %s\n" % link)
57 lookups = {'sv': 'Scalable Vectors for the Power ISA',
58 'sv/overview': 'Overview Chapter',
59 'sv/compliancy_levels': 'Compliancy Levels',
60 'sv/svp64': 'SVP64 Chapter',
61 'sv/sprs': 'SPRs',
62 'sv/normal': 'Arithmetic Mode',
63 'sv/ldst': 'Load/Store Mode',
64 'sv/cr_ops': 'Condition Register Fields Mode',
65 'sv/branches': 'Branch Mode',
66 'sv/setvl': 'setvl instruction',
67 'sv/svstep': 'svstep instruction',
68 'sv/remap': 'REMAP subsystem',
69 'sv/mv.swizzle': 'Swizzle Move',
70 'sv/mv.vec': 'Pack / Unpack',
71 'svp64/appendix': 'SVP64 Appendix',
72 'sv/svp64_quirks': 'SVP64 Quirks',
73 'openpower/isa/simplev': 'Simple-V pseudocode',
74 'sv/opcode_regs_deduped': 'SVP64 Augmentation Table',
75 }
76 if link in lookups:
77 out.write(" found %s\n" % lookups[link])
78 return Link(['', [], []],
79 [Str(lookups[link])],
80 ['#%s' % link, ''])
81 if k == 'Link':
82 out.write(" link type %s\n" % \
83 (type(v[1][0])))
84
85
86 if __name__ == "__main__":
87 toJSONFilter(inlinenotes)