-
Notifications
You must be signed in to change notification settings - Fork 2
/
jira.lua
executable file
·218 lines (179 loc) · 4.49 KB
/
jira.lua
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
-- This is a JIRA custom writer for pandoc.
--
-- Invoke with: pandoc --to jira.lua
--
-- Note: you need not have lua installed on your system to use this
-- custom writer. However, if you do have lua installed, you can
-- use it to test changes to the script. 'lua sample.lua' will
-- produce informative error messages if your code contains
-- syntax errors.
-- Character escaping
local function escape(s)
return s:gsub("{", "\\{")
end
-- Blocksep is used to separate block elements.
function Blocksep()
return "\n\n"
end
-- This function is called once for the whole document. Parameters:
-- body is a string, metadata is a table, variables is a table.
-- This gives you a fragment. You could use the metadata table to
-- fill variables in a custom lua template. Or, pass `--template=...`
-- to pandoc, and pandoc will add do the template processing as
-- usual.
function Doc(body, metadata, variables)
return body
end
-- The functions that follow render corresponding pandoc elements.
-- s is always a string, attr is always a table of attributes, and
-- items is always an array of strings (the items in a list).
-- Comments indicate the types of other variables.
function Str(s)
return escape(s)
end
function Space()
return " "
end
function SoftBreak()
return "\n"
end
function LineBreak()
return "\n\n"
end
function Emph(s)
return ("_%s_"):format(s)
end
function Strong(s)
return ("*%s*"):format(s)
end
function Subscript(s)
return ("~%s~"):format(s)
end
function Superscript(s)
return ("^%s^"):format(s)
end
function SmallCaps(s)
return Str(s)
end
function Strikeout(s)
return ("-%s-"):format(s)
end
function Link(s, src, tit, attr)
return ("[%s|%s]"):format(escape(s), src)
end
function Image(s, src, tit, attr)
return ("!%s|%s!"):format(escape(s), src)
end
function Code(s, attr)
return ("{{%s}}"):format(s)
end
function InlineMath(s)
return ("//( %s //)"):format(escape(s))
end
function DisplayMath(s)
return ("{code}\n//( %s //){code}"):format(escape(s))
end
function Note(s)
return Str(s)
end
function Span(s, attr)
return s
end
function RawInline(format, str)
return format == "jira"
and str
or ""
end
function Cite(s, cs)
return ("??%s??"):format(escape(s))
end
function Plain(s)
return s
end
function Para(s)
return s
end
-- lev is an integer, the header level.
function Header(lev, s, attr)
return ("h%d. %s"):format(lev, s)
end
function BlockQuote(s)
return ("{quote}\n%s\n{quote}"):format(s)
end
function HorizontalRule()
return "----"
end
function LineBlock(ls)
return table.concat(ls, '\n')
end
function CodeBlock(s, attr)
local lang = (attr.class or ''):match('^%a+')
return ("{code%s}\n%s\n{code}"):format(
lang and (":" .. lang) or '',
s
)
end
function BulletList(items)
local buffer = {}
for _, item in pairs(items) do
table.insert(buffer, "* " .. item)
end
return table.concat(buffer, "\n")
end
function OrderedList(items)
local buffer = {}
for _, item in pairs(items) do
table.insert(buffer, "# " .. item)
end
return table.concat(buffer, "\n")
end
function DefinitionList(items)
return BulletList(items)
end
function CaptionedImage(src, tit, caption, attr)
return Image(caption, src, tit, attr)
end
-- Caption is a string, aligns is an array of strings,
-- widths is an array of floats, headers is an array of
-- strings, rows is an array of arrays of strings.
function Table(caption, aligns, widths, headers, rows)
local buffer = {}
local function add(s)
table.insert(buffer, s)
end
local header_row = {}
local empty_header = true
for _, h in pairs(headers) do
table.insert(header_row, h)
empty_header = empty_header and h == ""
end
if empty_header then
head = ""
else
add(("||%s||"):format(table.concat(header_row, "||")))
end
for _, row in pairs(rows) do
local content_row = {}
for _, c in pairs(row) do
table.insert(content_row, c)
end
add(("|%s|"):format(table.concat(content_row, "|")))
end
return table.concat(buffer,'\n')
end
function RawBlock(format, str)
return format == "jira" and str or ""
end
function Div(s, attr)
return Para(s, attr)
end
-- The following code will produce runtime warnings when you haven't defined
-- all of the functions you need for the custom writer, so it's useful
-- to include when you're working on a writer.
local meta = {}
meta.__index =
function(_, key)
io.stderr:write(string.format("WARNING: Undefined function '%s'\n",key))
return function() return "" end
end
setmetatable(_G, meta)