git ssb

7+

dinoworm ๐Ÿ› / patchcore



Tree: 2789aa402161086c32523ba4b96239579b9643db

Files: 2789aa402161086c32523ba4b96239579b9643db / message / html / meta / channel.js

368 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 && msg.value.content.type !== 'channel') return h('a.channel', {href: `#${channel}`}, [`#${channel}`])
10 })
11}
12

Built with git-ssb-web