diff options
author | Carlos Fenollosa <carlos.fenollosa@gmail.com> | 2013-12-23 21:01:01 +0100 |
---|---|---|
committer | Carlos Fenollosa <carlos.fenollosa@gmail.com> | 2013-12-23 21:01:01 +0100 |
commit | 9f07bdbc3d41c4424c202ea755d83496b4e36a8a (patch) | |
tree | 1a3ebd6902bd65c3b3355f292fe37b0af7eac496 /bb.sh | |
parent | 2559651d6e243cefe1bc924cae3c5fa048784fc0 (diff) |
Extended the Markdown support info
Diffstat (limited to 'bb.sh')
-rwxr-xr-x | bb.sh | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -17,6 +17,7 @@ # and then rebuilds the index.html and feed.rss. # # Comments are supported via external service (Disqus). +# Markdown syntax is supported via third party library (e.g. Gruber's Markdown.pl) # # This script is standalone, it doesn't require any other file to run # @@ -33,6 +34,8 @@ # There are many loops which iterate on '*.html' so make sure that the only html files # on this folder are the blog entries and index.html and all_posts.html. Drafts must go # into drafts/ and any other *.html file should be moved out of the way +# +# Read more: https://github.com/cfenollosa/bashblog ######################################################################################### @@ -167,8 +170,8 @@ global_variables() { date_format="%B %d, %Y" date_locale="C" - # Markdown location. Trying to autodetect by default, but change this - # to the script location + # Markdown location. Trying to autodetect by default. + # The invocation must support the signature 'markdown_bin in.html > out.md' markdown_bin="$(which Markdown.pl)" } |