preserve backslashes when posting/editing
ask "read" not to process backslash sequences when reading user-edited file and leave them as is, instead
This commit is contained in:
parent
daf456b956
commit
2291238120
1 changed files with 1 additions and 1 deletions
2
bb.sh
2
bb.sh
|
@ -496,7 +496,7 @@ create_html_page() {
|
|||
parse_file() {
|
||||
# Read for the title and check that the filename is ok
|
||||
title=""
|
||||
while IFS='' read line; do
|
||||
while IFS='' read -r line; do
|
||||
if [[ "$title" == "" ]]; then
|
||||
# set title and
|
||||
# remove extra <p> and </p> added by markdown
|
||||
|
|
Loading…
Reference in a new issue