f2f19f39fbd740249b593eacd7ca1bdc4d25f4b4
7 from pandocfilters
import (toJSONFilter
, RawInline
, Space
, Str
, walk
, Image
,
11 Pandoc filter for Markdown that converts most endnotes into
12 Pandoc's inline notes. If input notes had multiple paragraphs,
13 the paragraphs are joined by a space. But if an input note
14 had any blocks other than paragraphs, the note is left as is.
17 # inkscape -z sv/bridge_phy.svg --export-png=bridge.png
18 out
= open("/tmp/log.txt", "w")
21 def query(k
, v
, f
, meta
):
25 elif isinstance(v
, list):
26 if inlines
and k
== 'Para':
27 inlines
.append(Space())
32 def inlinenotes(k
, v
, f
, meta
):
33 out
.write("k v f meta %s %s %s %s\n" %
34 (repr(k
), repr(v
), repr(f
), repr(meta
)))
37 if k
== u
'Image' and f
== 'latex':
39 out
.write(" image %s\n" % (imgname
))
40 if imgname
.startswith("/"):
41 # use absolute paths so pandoc_img.py can be used in any directory
42 file_path
= os
.path
.abspath(__file__
)
43 openpower_path
= os
.path
.split(file_path
)[0]
44 wiki_path
= os
.path
.split(openpower_path
)[0]
45 imgname
= os
.path
.join(wiki_path
, imgname
.lstrip('/'))
46 png
= imgname
.replace(".svg", ".png")
47 png
= os
.path
.split(png
)[1]
48 png
= "tex_out/%s" % png
49 print(f
"converting {imgname} to {png}", file=sys
.stderr
)
50 subprocess
.run(["inkscape", "-z", "-C", imgname
,
51 "--export-png=%s" % png
],
52 stdout
=subprocess
.PIPE
)
55 if k
== 'Str' and f
== 'latex':
57 if not v
.startswith("[["):
59 find_brack
= v
.find(']]')
63 link
= v
[2:find_brack
]
64 rest
= link
.split("#") # can be joined up again with '#'.join(rest)
66 out
.write(" link %s\n" % link
)
67 lookups
= {'sv': 'Scalable Vectors for Power ISA',
68 'SV|sv': 'Scalable Vectors for Power ISA',
69 'openpower/sv': 'Scalable Vectors for Power ISA',
70 'sv/overview': 'Overview Chapter',
71 'sv/vector_isa_comparison': 'Vector ISA Comparison',
72 'sv/comparison_table': 'ISA Comparison Table',
73 'sv/compliancy_levels': 'Compliancy Levels',
74 'sv/svp64': 'SVP64 Chapter',
75 'svp64': 'SVP64 Chapter',
77 'sv/normal': 'Arithmetic Mode',
78 'sv/ldst': 'Load/Store Mode',
79 'sv/cr_ops': 'Condition Register Fields Mode',
80 'sv/executive_summary': 'Exevutive Summary',
81 'sv/branches': 'Branch Mode',
82 'sv/setvl': 'setvl instruction',
83 'sv/svstep': 'svstep instruction',
84 'sv/remap': 'REMAP subsystem',
85 'sv/remap/appendix': 'REMAP Appendix',
86 'sv/mv.swizzle': 'Swizzle Move',
87 'sv/twin_butterfly': 'Twin Butterfly',
88 'sv/mv.vec': 'Pack / Unpack',
89 'svp64/appendix': 'SVP64 Appendix',
90 'sv/svp64/appendix': 'SVP64 Appendix',
91 'sv/svp64_quirks': 'SVP64 Quirks',
92 'openpower/isa/simplev': 'Simple-V pseudocode',
93 'opcode_regs_deduped': 'SVP64 Augmentation Table',
94 'sv/av_opcodes': 'Audio and Video Opcodes',
95 'av_opcodes': 'Audio and Video Opcodes',
96 'sv/vector_ops': 'SV Vector ops',
97 'sv/int_fp_mv': 'FP/Int Conversion ops',
98 'sv/bitmanip': 'Bitmanip ops',
99 'sv/cr_int_predication': 'CR Weird ops',
100 'cr_int_predication': 'CR Weird ops',
101 'sv/fclass': 'FP Class ops',
102 'sv/biginteger': 'Big Integer',
103 'sv/biginteger/analysis': 'Big Integer Analysis',
104 'isa/svfparith': 'Floating Point pseudocode',
105 'isa/svfixedarith': 'Fixed Point pseudocode',
106 'openpower/isa/branch': 'Branch pseudocode',
107 'openpower/transcendentals': 'Transcendentals',
109 if link
.startswith("ls") and link
[2].isdigit():
110 out
.write(" found RFC %s\n" % link
)
111 return [Link(['', [], []],
112 [Str("{RFC "+link
+"}")],
114 Str(v
[find_brack
+2:])]
116 out
.write(" found %s\n" % lookups
[link
])
117 return [Link(['', [], []],
118 [Str("{"+lookups
[link
]+"}")],
119 ['#%s' % linklookups(rest
), '']),
120 Str(v
[find_brack
+2:])]
122 link
, ref
= link
.split("|")
123 return [Link(['', [], []],
126 Str(v
[find_brack
+2:])]
128 out
.write(" link type %s\n" %
130 if k
== 'RawInline' and v
[0] == 'html':
131 if re
.fullmatch(r
"< *br */? *>", v
[1]):
132 return [RawInline('latex', r
'\\')]
133 if re
.fullmatch(r
"< *sup *>", v
[1]):
134 return [RawInline('latex', r
'\textsuperscript{')]
135 if re
.fullmatch(r
"< */ *sup *>", v
[1]):
136 return [RawInline('latex', '}')]
137 if re
.fullmatch(r
"< *sub *>", v
[1]):
138 return [RawInline('latex', r
'\textsubscript{')]
139 if re
.fullmatch(r
"< */ *sub *>", v
[1]):
140 return [RawInline('latex', '}')]
141 if re
.fullmatch(r
"< *small *>", v
[1]):
142 return [RawInline('latex', r
'{\small ')]
143 if re
.fullmatch(r
"< */ *small *>", v
[1]):
144 return [RawInline('latex', '}')]
146 def linklookups(rest
):
148 if len(rest
[0]) == 0:
149 res
= '_'.join(rest
[1:])
152 if __name__
== "__main__":
153 toJSONFilter(inlinenotes
)