git ssb

7+

dinoworm ๐Ÿ› / patchcore



Tree: 8ab7e949190c9ca82f10914e29aae9de082158cb

Files: 8ab7e949190c9ca82f10914e29aae9de082158cb / channel / html / link.js

399 bytesRaw
1var h = require('mutant/h')
2var nest = require('depnest')
3
4exports.needs = nest({
5 'channel.sync.normalize': 'first'
6})
7
8exports.gives = nest('channel.html.link')
9
10exports.create = function (api) {
11 return nest('channel.html.link', function (channel, text = null) {
12 var ref = `#${api.channel.sync.normalize(channel)}`
13 return h('a ChannelLink', {href: ref, title: ref}, text || ref)
14 })
15}
16

Built with git-ssb-web