Skip to content

Commit e88e115

Browse files
committed
Fix duplicate semi-colon in imports
1 parent 424f81c commit e88e115

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

_extensions/sverto/create-imports.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ local preprocess_qmd_filter = {
8181
-- /site_libs/quarto-ojs
8282
block.text = block_text:gsub(
8383
svelte_import_syntax,
84-
"import(\"./../../" .. current_qmd_path .. "%1.js\");")
84+
"import(\"./../../" .. current_qmd_path .. "%1.js\")")
8585

8686
end
8787
return block

docs/_extensions/sverto/create-imports.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ local preprocess_qmd_filter = {
8181
-- /site_libs/quarto-ojs
8282
block.text = block_text:gsub(
8383
svelte_import_syntax,
84-
"import(\"./../../" .. current_qmd_path .. "%1.js\");")
84+
"import(\"./../../" .. current_qmd_path .. "%1.js\")")
8585

8686
end
8787
return block

0 commit comments

Comments
 (0)