15 lines
439 B
Lua
15 lines
439 B
Lua
--- Remove hyperlinks from DOIs while preserving the DOI text
|
||
--- Useful for styles without DOIs but you don't want to edit the bibliography file
|
||
|
||
--- Copyright: © 2024–Present Tom Ben
|
||
--- License: MIT License
|
||
|
||
function Link(el)
|
||
-- Check if this is a DOI link
|
||
if el.target:match("^https?://doi%.org") then
|
||
-- Return just the link text content without the link wrapper
|
||
return el.content
|
||
end
|
||
return el
|
||
end
|