_pages: Disable engine debug

This commit is contained in:
Stig-Ørjan Smelror 2024-02-02 10:46:57 +01:00
parent 50512c096f
commit b8b5ce7bcb

6
qsgen2
View File

@ -418,9 +418,9 @@ function _pages() {
if [[ ${file_ext} == "tpl" ]]; then if [[ ${file_ext} == "tpl" ]]; then
local page_content=$( ${engine} "$page_content" ) local page_content=$( ${engine} "$page_content" )
elif [[ ${file_ext} == "md" ]]; then elif [[ ${file_ext} == "md" ]]; then
local page_content=$( echo "$page_content" | ${engine} ) local page_content=$(echo "$page_content" | ${engine})
echo "$page_content" #echo "$page_content"
exit #exit
fi fi
# Look for links, images and videos and convert them if present. # Look for links, images and videos and convert them if present.