главная|main page

состояние|status

блог|blog

файлы|files

программы|software

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Fenollosa <carlos.fenollosa@gmail.com>2014-02-18 17:35:31 +0100
committerCarlos Fenollosa <carlos.fenollosa@gmail.com>2014-02-18 17:35:31 +0100
commit549805d9e323b538ccfeca53f6a774c468fe2792 (patch)
tree4d8319d05028dcbb575fa19e822490613bde6d09
parent6da22dcf215031281c268d1268bf84db157ba94e (diff)
parenteeb8c057d932a3a1b03c7abd7dba23d1e69f7f9c (diff)
Merge branch 'master' of github.com:cfenollosa/bashblog
-rwxr-xr-xbb.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/bb.sh b/bb.sh
index 7269cf5..2d95e9b 100755
--- a/bb.sh
+++ b/bb.sh
@@ -368,7 +368,7 @@ create_html_page() {
echo '<!-- entry begin -->' >> "$filename" # marks the beginning of the whole post
echo '<h3><a class="ablack" href="'$global_url/$file_url'">' >> "$filename"
# remove possible <p>'s on the title because of markdown conversion
- echo "$(echo "$title" | sed 's/\<\/*p\>//g')" >> "$filename"
+ echo "$(echo "$title" | sed 's/<\/*p>//g')" >> "$filename"
echo '</a></h3>' >> "$filename"
if [[ "$timestamp" == "" ]]; then
echo '<div class="subtitle">'$(LC_ALL=$date_locale date +"$date_format")' &mdash; ' >> "$filename"
@@ -407,9 +407,10 @@ parse_file() {
title=""
while read line; do
if [[ "$title" == "" ]]; then
- title="$line"
+ # set title and
# remove extra <p> and </p> added by markdown
- filename="$(echo $title | sed 's/\<\/*p\>//g' | tr [:upper:] [:lower:])"
+ title=$(echo "$line" | sed 's/<\/*p>//g')
+ filename="$(echo $title | tr [:upper:] [:lower:])"
filename="$(echo $filename | sed 's/\ /-/g')"
filename="$(echo $filename | tr -dc '[:alnum:]-')" # html likes alphanumeric
filename="$filename.html"