Debug time

This commit is contained in:
Stig-Ørjan Smelror 2024-01-29 22:01:59 +01:00
parent 14eaf91de2
commit 36ed1dfb7e

3
qsgen2
View File

@ -312,6 +312,9 @@ function _pages() {
# Grab the title from the Page
page_title=$( grep '#title' ${page_content} | head -2 | cut -d= -f2 )
echo "Page Title: ${page_title}"
exit
# Remove the #title line from the buffer. No longer needed.
page_content=$( grep -v '#title' ${page_content} )