var get = require('./get') var Render = require('./render') //TODO: markdown. and attending link module.exports = function (opts) { var api = this.api, contex = this.context var sbot = this.sbot return function (cb) { get(sbot, opts.id, function (err, gathering) { if(err) return cb(err) cb(null, Render(api, gathering)) }) } }