add _extensions

This commit is contained in:
2026-05-21 13:37:53 +08:00
parent 6a9a5fc90e
commit 61bd0bea2f
252 changed files with 33972 additions and 1 deletions
@@ -0,0 +1,14 @@
--- 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