add boh prefix to parse_frontmatter func
Esse commit está contido em:
pai
ef1f5f2414
commit
299d799591
1 arquivos alterados com 2 adições e 2 exclusões
4
boh
4
boh
|
@ -64,7 +64,7 @@ boh_check() {
|
|||
# Third sed transform yaml in shell evaluable code (lol: asd -> lol="asd")
|
||||
# Kudos to stackoverflow users for this magic
|
||||
|
||||
parse_frontmatter(){
|
||||
boh_parse_frontmatter(){
|
||||
frontmatter=`cat $1 | sed -n '1{/^---/{:a N;/\n---/!ba;p}}' | sed '1d;$d' | sed -e 's/:[^:\/\/]/="/g;s/$/"/g;s/ *=/=/g'`
|
||||
echo $frontmatter
|
||||
}
|
||||
|
@ -86,7 +86,7 @@ boh_build() {
|
|||
# sed removes the yaml frontmatter
|
||||
body=`cat $file | sed '1{/^---/{:a N;/\n---/!ba;d}}' | boh_markdown`
|
||||
newpath="$destination_dir/"`echo $file | rev | cut -d . -f 2 | rev | cut -d / -f $cut_at-`".html"
|
||||
frontmatter=`parse_frontmatter $file`
|
||||
frontmatter=`boh_parse_frontmatter $file`
|
||||
if [ "$frontmatter" ];then
|
||||
eval $frontmatter
|
||||
fi
|
||||
|
|
Carregando…
Referência em uma nova issue