aboutsummaryrefslogtreecommitdiff
path: root/src/mixins
diff options
context:
space:
mode:
Diffstat (limited to 'src/mixins')
-rw-r--r--src/mixins/postUtils.pug2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mixins/postUtils.pug b/src/mixins/postUtils.pug
index b778cbd..b96ff1e 100644
--- a/src/mixins/postUtils.pug
+++ b/src/mixins/postUtils.pug
@@ -60,7 +60,7 @@
60 var result = html; 60 var result = html;
61 matches.forEach((match) => { 61 matches.forEach((match) => {
62 // Replace each occurrence with an actual img tag 62 // Replace each occurrence with an actual img tag
63 result = result.replace(match[0], '<a href="' + match[1] + '"><img src="' + match[1] + '"></a>'); 63 result = result.replace(match[0], '<a href="' + match[1] + '"><img class="inline" src="' + match[1] + '"></a>');
64 }) 64 })
65 65
66 return result; 66 return result;