Files: 6165433879b4b23dc7e1435ca5bf81275ebb508f / channel / html / link.js
399 bytesRaw
1 | var h = require('mutant/h') |
2 | var nest = require('depnest') |
3 | |
4 | exports.needs = nest({ |
5 | 'channel.sync.normalize': 'first' |
6 | }) |
7 | |
8 | exports.gives = nest('channel.html.link') |
9 | |
10 | exports.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