_pages: Actually run engine

This commit is contained in:
Stig-Ørjan Smelror 2024-02-02 10:45:49 +01:00
parent 94fd3ecb2c
commit 50512c096f

2
qsgen2
View File

@ -418,7 +418,7 @@ function _pages() {
if [[ ${file_ext} == "tpl" ]]; then
local page_content=$( ${engine} "$page_content" )
elif [[ ${file_ext} == "md" ]]; then
local page_content=$( echo "$page_content" | $(${engine}) )
local page_content=$( echo "$page_content" | ${engine} )
echo "$page_content"
exit
fi