aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--render.js28
1 files changed, 26 insertions, 2 deletions
diff --git a/render.js b/render.js
index 193201b..4e16168 100644
--- a/render.js
+++ b/render.js
@@ -85,14 +85,38 @@ function render (msg, keys, preview) {
}
})
- message.insertBefore(img, message.childNodes[message.childNodes.length - 1])
+ message.insertBefore(img, message.childNodes[message.childNodes.length - 1])
}
})
}
})
var renderer = new marked.Renderer();
- renderer.link = function(href, title, text) {
+ renderer.paragraph = function (paragraph) {
+ var array = paragraph.split(' ')
+
+ for (i = 0; i < array.length; i++) {
+ word = array[i]
+ if (word.startsWith('#')) {
+ //console.log(word + ' is a hashtag')
+ if ((word[word.length -1] === '.') || word[word.length - 1] === ',') {
+ //console.log('and it ends with a ' + word[word.length - 1])
+ var end = word[word.length - 1]
+ word = word.substring(0, word.length - 1)
+ }
+ var hashtag = "<a href='#?" + word + "'>" + word + "</a>"
+ if (end) {
+ hashtag = hashtag + end
+ }
+ //console.log(hashtag)
+ array[i] = hashtag
+ }
+ }
+
+ paragraph = array.join(' ')
+ return paragraph
+ }
+ renderer.link = function (href, title, text) {
if ((href[0] == '@') || (href[0] == '%')) {
href = '#' + href
}