git ssb

7+

dinoworm ๐Ÿ› / patchcore



Tree: 72f03302464c75d8113a8775b5e8173db6be3e94

Files: 72f03302464c75d8113a8775b5e8173db6be3e94 / message / html / meta / channel.js

328 bytesRaw
1const h = require('mutant/h')
2const nest = require('depnest')
3
4exports.gives = nest('message.html.meta')
5
6exports.create = (api) => {
7 return nest('message.html.meta', function renderChannel (msg) {
8 const { channel } = msg.value.content
9 if (channel) return h('a.channel', {href: `#${channel}`}, [`#${channel}`])
10 })
11}
12

Built with git-ssb-web