From 14bf55f86f6723862f7e54988bacddc21c16a4a5 Mon Sep 17 00:00:00 2001 From: encrypt Date: Tue, 11 Aug 2015 17:59:42 +0200 Subject: [PATCH] change parse_frontmatter func call with new one --- boh.config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boh.config b/boh.config index 0aebab5..8185dee 100644 --- a/boh.config +++ b/boh.config @@ -38,7 +38,7 @@ EOF base_date=`echo $file | cut -d / -f $cut_at- | cut -d - -f -3` date=`date --date="$base_date" "+ %a %d, %b %Y"` link="/posts/"`date --date="$base_date" "+%Y/%m/%d"`"/"`echo $file | rev | cut -d / -f 1 | rev | sed 's/.md/.html/' | cut -d - -f 4-` - frontmatter=`parse_frontmatter $file` + frontmatter=`boh_parse_frontmatter $file` eval $frontmatter echo "
  • $date

    $title

  • " >> "$source_dir/index.md" done