Files
2026-05-21 13:37:53 +08:00

15 lines
439 B
Lua
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
--- 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: © 2024Present 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