commit 1a72042c14b414f8140eacd2ebe84645d68f7183
parent 8c52ee579c91cfcfe90de2608919dc10a519be0f
Author: Hugo Soucy <hugo.soucy@savoirfairelinux.com>
Date: Tue, 8 Nov 2016 13:59:57 -0500
Remove a typo.
Diffstat:
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/functions/create-html-sections b/functions/create-html-sections
@@ -38,10 +38,6 @@ create_html_sections () {
--template="$TPL_PANDOC_PATH/${tplname}-index.inc.html" \
-t html5 \
-o "$tmp_folder/$markdown_date-${outputname%.*}".inc.html
-
- page_path="$(realpath --relative-to=$CONTENT_PATH/ ${markdown%.*}.html)"
-
- echo "------- $page_path"
done
if test "$(ls -A "$tmp_folder/")"; then
@@ -54,7 +50,7 @@ create_html_sections () {
# Merge the "includes.html" and "index.md" to create the section page list
pandoc -t html5 "$indexsubdir/index.md" -s \
--template="$TPL_PANDOC_PATH/${tplname}-index.html" \
- -A "$tmp_folder/tmp.html" \«
+ -A "$tmp_folder/tmp.html" \
-o "$indexsubdir/index.html"
fi
done