csl-clio/Filtres-Pandoc/en-dash-to-hyphen-in-ranges.lua

27 lines
1001 B
Lua
Raw Normal View History

2021-04-15 22:02:49 +01:00
--[[
************************************************************************
* Copyright 2021 by Bastien Dumont (bastien.dumont@posteo.net)
*
* This file is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This file is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this file. If not, see <https://www.gnu.org/licenses/>.
*
************************************************************************
]]--
function Str (s)
if string.match(s.text, '[0-9mdclxvi]+[0-9mdclxvi]+') then
return pandoc.Str(string.gsub(s.text, '', '-'))
2021-04-15 22:02:49 +01:00
end
end