aboutsummaryrefslogtreecommitdiff
path: root/_extensions/leandre-filter/leandre.lua
blob: 71466b0bb49d0ef7dd9fa25d7ecce97bbfa2b215 (plain)
  1. function Str(el)
  2. quarto.log.output("Found text: " .. el.text) -- Debug line
  3. if el.text:find("Leandre") then
  4. quarto.log.output("Found Leandre!") -- Debug line
  5. el.text = el.text:gsub("Leandre", "Léandre")
  6. end
  7. return el
  8. end
  9. return {
  10. {'Str', Str}
  11. }