diff options
Diffstat (limited to '')
-rw-r--r-- | util/mdconv.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util/mdconv.sh b/util/mdconv.sh index 4385f51..1178484 100644 --- a/util/mdconv.sh +++ b/util/mdconv.sh @@ -1,8 +1,8 @@ set -e -title="$(lowdown -X title "$1")" -date="$(lowdown -X date "$1")" -author="$(lowdown -X author "$1")" +title=$(lowdown -X title "$1") +date=$(lowdown -X date "$1") +author=$(lowdown -X author "$1") flags="--html-no-skiphtml --html-no-escapehtml" |