diff options
author | amzrk2 | 2020-05-18 11:03:55 +0800 |
---|---|---|
committer | amzrk2 | 2020-05-18 11:03:55 +0800 |
commit | 4da3a18feb9d6be806d92a92230e3722fe76062a (patch) | |
tree | c36df95c4397403e943144507a43b63aee271683 /layouts/_default | |
parent | a26caa1b918d700a585f128358453ef9f3829aa3 (diff) | |
download | hugo-theme-fuji-4da3a18feb9d6be806d92a92230e3722fe76062a.tar.gz hugo-theme-fuji-4da3a18feb9d6be806d92a92230e3722fe76062a.tar.bz2 hugo-theme-fuji-4da3a18feb9d6be806d92a92230e3722fe76062a.zip |
Fix image markdown hook
Diffstat (limited to 'layouts/_default')
-rw-r--r-- | layouts/_default/_markup/render-image.html | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/layouts/_default/_markup/render-image.html b/layouts/_default/_markup/render-image.html index 3ebea6a..f9493b1 100644 --- a/layouts/_default/_markup/render-image.html +++ b/layouts/_default/_markup/render-image.html @@ -1,3 +1 @@ -<p> - <img class="img-zoomable" src="{{ .Destination | safeURL }}" alt="{{ .Text }}"{{ with .Title }} title="{{ . }}"{{ end }} /> -</p>
\ No newline at end of file +<img class="img-zoomable" src="{{ .Destination | safeURL }}" alt="{{ .Text }}"{{ with .Title }} title="{{ . }}"{{ end }} />
\ No newline at end of file |