diff options
| author | Albert Krewinkel <[email protected]> | 2022-01-31 10:21:00 +0100 |
|---|---|---|
| committer | Albert Krewinkel <[email protected]> | 2022-01-31 11:33:31 +0100 |
| commit | 46e593762890bf882a9941668699da867297649c (patch) | |
| tree | c8dc6c040961be879c846d22aca9da2dd9e554bd /data/sample.lua | |
| parent | 0e5ab9760b6c7546d225109845fa7df7486a1300 (diff) | |
Custom writer: default to single quotes for strings
Makes the code more consistent and makes it easier to use double quotes
in strings, which is the usual quoting style used for HTML attributes.
Closes: #7487
Diffstat (limited to 'data/sample.lua')
| -rw-r--r-- | data/sample.lua | 108 |
1 files changed, 54 insertions, 54 deletions
diff --git a/data/sample.lua b/data/sample.lua index ea20add2e..c0adae230 100644 --- a/data/sample.lua +++ b/data/sample.lua @@ -14,7 +14,7 @@ -- syntax errors. local pipe = pandoc.pipe -local stringify = (require "pandoc.utils").stringify +local stringify = (require 'pandoc.utils').stringify -- The global variable PANDOC_DOCUMENT contains the full AST of -- the document which is going to be written. It can be used to @@ -25,19 +25,19 @@ local meta = PANDOC_DOCUMENT.meta -- `image_format` meta value. local image_format = meta.image_format and stringify(meta.image_format) - or "png" + or 'png' local image_mime_type = ({ - jpeg = "image/jpeg", - jpg = "image/jpeg", - gif = "image/gif", - png = "image/png", - svg = "image/svg+xml", + jpeg = 'image/jpeg', + jpg = 'image/jpeg', + gif = 'image/gif', + png = 'image/png', + svg = 'image/svg+xml', })[image_format] - or error("unsupported image format `" .. image_format .. "`") + or error('unsupported image format `' .. image_format .. '`') -- Character escaping local function escape(s, in_attribute) - return s:gsub("[<>&\"']", + return s:gsub('[<>&"\']', function(x) if x == '<' then return '<' @@ -60,7 +60,7 @@ end local function attributes(attr) local attr_table = {} for x,y in pairs(attr) do - if y and y ~= "" then + if y and y ~= '' then table.insert(attr_table, ' ' .. x .. '="' .. escape(y,true) .. '"') end end @@ -72,7 +72,7 @@ local notes = {} -- Blocksep is used to separate block elements. function Blocksep() - return "\n\n" + return '\n\n' end -- This function is called once for the whole document. Parameters: @@ -106,31 +106,31 @@ function Str(s) end function Space() - return " " + return ' ' end function SoftBreak() - return "\n" + return '\n' end function LineBreak() - return "<br/>" + return '<br/>' end function Emph(s) - return "<em>" .. s .. "</em>" + return '<em>' .. s .. '</em>' end function Strong(s) - return "<strong>" .. s .. "</strong>" + return '<strong>' .. s .. '</strong>' end function Subscript(s) - return "<sub>" .. s .. "</sub>" + return '<sub>' .. s .. '</sub>' end function Superscript(s) - return "<sup>" .. s .. "</sup>" + return '<sup>' .. s .. '</sup>' end function SmallCaps(s) @@ -142,33 +142,33 @@ function Strikeout(s) end function Link(s, tgt, tit, attr) - return "<a href='" .. escape(tgt,true) .. "' title='" .. - escape(tit,true) .. "'" .. attributes(attr) .. ">" .. s .. "</a>" + return '<a href="' .. escape(tgt,true) .. '" title="' .. + escape(tit,true) .. '"' .. attributes(attr) .. '>' .. s .. '</a>' end function Image(s, src, tit, attr) - return "<img src='" .. escape(src,true) .. "' title='" .. - escape(tit,true) .. "'/>" + return '<img src="' .. escape(src,true) .. '" title="' .. + escape(tit,true) .. '"/>' end function Code(s, attr) - return "<code" .. attributes(attr) .. ">" .. escape(s) .. "</code>" + return '<code' .. attributes(attr) .. '>' .. escape(s) .. '</code>' end function InlineMath(s) - return "\\(" .. escape(s) .. "\\)" + return '\\(' .. escape(s) .. '\\)' end function DisplayMath(s) - return "\\[" .. escape(s) .. "\\]" + return '\\[' .. escape(s) .. '\\]' end function SingleQuoted(s) - return "‘" .. s .. "’" + return '‘' .. s .. '’' end function DoubleQuoted(s) - return "“" .. s .. "”" + return '“' .. s .. '”' end function Note(s) @@ -184,11 +184,11 @@ function Note(s) end function Span(s, attr) - return "<span" .. attributes(attr) .. ">" .. s .. "</span>" + return '<span' .. attributes(attr) .. '>' .. s .. '</span>' end function RawInline(format, str) - if format == "html" then + if format == 'html' then return str else return '' @@ -200,8 +200,8 @@ function Cite(s, cs) for _,cit in ipairs(cs) do table.insert(ids, cit.citationId) end - return "<span class=\"cite\" data-citation-ids=\"" .. table.concat(ids, ",") .. - "\">" .. s .. "</span>" + return '<span class="cite" data-citation-ids="' .. table.concat(ids, ',') .. + '">' .. s .. '</span>' end function Plain(s) @@ -209,16 +209,16 @@ function Plain(s) end function Para(s) - return "<p>" .. s .. "</p>" + return '<p>' .. s .. '</p>' end -- lev is an integer, the header level. function Header(lev, s, attr) - return "<h" .. lev .. attributes(attr) .. ">" .. s .. "</h" .. lev .. ">" + return '<h' .. lev .. attributes(attr) .. '>' .. s .. '</h' .. lev .. '>' end function BlockQuote(s) - return "<blockquote>\n" .. s .. "\n</blockquote>" + return '<blockquote>\n' .. s .. '\n</blockquote>' end function HorizontalRule() @@ -234,39 +234,39 @@ function CodeBlock(s, attr) -- If code block has class 'dot', pipe the contents through dot -- and base64, and include the base64-encoded png as a data: URL. if attr.class and string.match(' ' .. attr.class .. ' ',' dot ') then - local img = pipe("base64", {}, pipe("dot", {"-T" .. image_format}, s)) + local img = pipe('base64', {}, pipe('dot', {'-T' .. image_format}, s)) return '<img src="data:' .. image_mime_type .. ';base64,' .. img .. '"/>' -- otherwise treat as code (one could pipe through a highlighter) else - return "<pre><code" .. attributes(attr) .. ">" .. escape(s) .. - "</code></pre>" + return '<pre><code' .. attributes(attr) .. '>' .. escape(s) .. + '</code></pre>' end end function BulletList(items) local buffer = {} for _, item in pairs(items) do - table.insert(buffer, "<li>" .. item .. "</li>") + table.insert(buffer, '<li>' .. item .. '</li>') end - return "<ul>\n" .. table.concat(buffer, "\n") .. "\n</ul>" + return '<ul>\n' .. table.concat(buffer, '\n') .. '\n</ul>' end function OrderedList(items) local buffer = {} for _, item in pairs(items) do - table.insert(buffer, "<li>" .. item .. "</li>") + table.insert(buffer, '<li>' .. item .. '</li>') end - return "<ol>\n" .. table.concat(buffer, "\n") .. "\n</ol>" + return '<ol>\n' .. table.concat(buffer, '\n') .. '\n</ol>' end function DefinitionList(items) local buffer = {} for _,item in pairs(items) do local k, v = next(item) - table.insert(buffer, "<dt>" .. k .. "</dt>\n<dd>" .. - table.concat(v, "</dd>\n<dd>") .. "</dd>") + table.insert(buffer, '<dt>' .. k .. '</dt>\n<dd>' .. + table.concat(v, '</dd>\n<dd>') .. '</dd>') end - return "<dl>\n" .. table.concat(buffer, "\n") .. "\n</dl>" + return '<dl>\n' .. table.concat(buffer, '\n') .. '\n</dl>' end -- Convert pandoc alignment to something HTML can use. @@ -303,13 +303,13 @@ function Table(caption, aligns, widths, headers, rows) local function add(s) table.insert(buffer, s) end - add("<table>") - if caption ~= "" then - add("<caption>" .. escape(caption) .. "</caption>") + add('<table>') + if caption ~= '' then + add('<caption>' .. escape(caption) .. '</caption>') end if widths and widths[1] ~= 0 then for _, w in pairs(widths) do - add('<col width="' .. string.format("%.0f%%", w * 100) .. '" />') + add('<col width="' .. string.format('%.0f%%', w * 100) .. '" />') end end local header_row = {} @@ -317,7 +317,7 @@ function Table(caption, aligns, widths, headers, rows) for i, h in pairs(headers) do local align = html_align(aligns[i]) table.insert(header_row,'<th align="' .. align .. '">' .. h .. '</th>') - empty_header = empty_header and h == "" + empty_header = empty_header and h == '' end if not empty_header then add('<tr class="header">') @@ -326,9 +326,9 @@ function Table(caption, aligns, widths, headers, rows) end add('</tr>') end - local class = "even" + local class = 'even' for _, row in pairs(rows) do - class = (class == "even" and "odd") or "even" + class = (class == 'even' and 'odd') or 'even' add('<tr class="' .. class .. '">') for i,c in pairs(row) do add('<td align="' .. html_align(aligns[i]) .. '">' .. c .. '</td>') @@ -340,7 +340,7 @@ function Table(caption, aligns, widths, headers, rows) end function RawBlock(format, str) - if format == "html" then + if format == 'html' then return str else return '' @@ -348,7 +348,7 @@ function RawBlock(format, str) end function Div(s, attr) - return "<div" .. attributes(attr) .. ">\n" .. s .. "</div>" + return '<div' .. attributes(attr) .. '>\n' .. s .. '</div>' end -- The following code will produce runtime warnings when you haven't defined @@ -358,6 +358,6 @@ local meta = {} meta.__index = function(_, key) io.stderr:write(string.format("WARNING: Undefined function '%s'\n",key)) - return function() return "" end + return function() return '' end end setmetatable(_G, meta) |
