diff options
author | Wynn Wolf Arbor | 2020-06-06 14:00:39 +0200 |
---|---|---|
committer | Wynn Wolf Arbor | 2020-06-06 14:00:39 +0200 |
commit | 31e067ad2d2b02a64e936ed6b882489ec434abda (patch) | |
tree | 06d255ec50ee0336caa0818999cad0ca015329e2 | |
parent | 280c3c562e02dbcf37ffd3654f4c1b31c0a55420 (diff) | |
download | site-31e067ad2d2b02a64e936ed6b882489ec434abda.tar.gz |
util: Remove unnecessary quoting in mdconv.sh
-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" |