aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore3
-rw-r--r--_extensions/leandre-filter/leandre.lua6
2 files changed, 3 insertions, 6 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..e4c696a
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+/.luarc.json
+*_files/
+*.html \ No newline at end of file
diff --git a/_extensions/leandre-filter/leandre.lua b/_extensions/leandre-filter/leandre.lua
index 71466b0..f129624 100644
--- a/_extensions/leandre-filter/leandre.lua
+++ b/_extensions/leandre-filter/leandre.lua
@@ -1,12 +1,6 @@
function Str(el)
- quarto.log.output("Found text: " .. el.text) -- Debug line
if el.text:find("Leandre") then
- quarto.log.output("Found Leandre!") -- Debug line
el.text = el.text:gsub("Leandre", "Léandre")
end
return el
end
-
-return {
- {'Str', Str}
-} \ No newline at end of file