From 5a334f0ae50e00d56559657b4d9a516f050e3066 Mon Sep 17 00:00:00 2001 From: Riku Rouvila Date: Wed, 23 Sep 2020 21:27:02 +0300 Subject: [PATCH] add hashtag before rendered channel names --- pages/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/index.tsx b/pages/index.tsx index bd045c4..60efe37 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -22,7 +22,7 @@ const slackMarkdownRenderer = (text: { value: string }) => { if (matches) { return ( - {matches[2]} + #{matches[2]} ); }