Skip to content

Commit 185e5bb

Browse files
committed
Remove debug statements from docs
1 parent 0d19d8b commit 185e5bb

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

docs/_extensions/sverto/create-imports.lua

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,6 @@ local preprocess_qmd_filter = {
7272

7373
-- first, extract .svelte paths in import_svelte() statements
7474
for svelte_path in block_text:gmatch(svelte_import_syntax) do
75-
print("Sending to Svelte compiler: " ..
76-
current_qmd_path .. svelte_path .. ".svelte\n")
7775
append_to_file(".sverto/.sverto-imports",
7876
current_qmd_path .. svelte_path .. ".svelte\n")
7977
end
@@ -126,7 +124,6 @@ for key, qmd_path in ipairs(in_files) do
126124
-- local svelte_files = {}
127125
local transformed_doc = doc:walk(preprocess_qmd_filter)
128126
create_dir_recursively(".sverto/" .. path_dir(qmd_path))
129-
print("Creating .sverto/" .. qmd_path)
130127
write_file(".sverto/" .. qmd_path, pandoc.write(transformed_doc, "markdown"))
131128

132129
end

docs/_extensions/sverto/refresh.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
// delete the temporary import block files and the temp render metadata
22

3-
console.log("Render all? " + Deno.env.get("QUARTO_PROJECT_RENDER_ALL"))
4-
53
if (Deno.env.get("QUARTO_PROJECT_RENDER_ALL") == "1") {
64
console.log("Clearing .sverto/")
75
try {

0 commit comments

Comments
 (0)