lbry.tech/config.js

23 lines
431 B
JavaScript
Raw Normal View History

2018-07-12 17:21:42 +02:00
"use strict";
2018-06-28 00:00:24 +02:00
module.exports = exports = {
2018-07-12 17:21:42 +02:00
github: {
2018-06-28 00:00:24 +02:00
repo: "lbryio/lbry.tech",
docsBranch: "master/content",
2018-07-12 17:21:42 +02:00
editLinkText: "Edit this page on GitHub"
2018-06-06 09:44:28 +02:00
},
2018-06-28 00:00:24 +02:00
ga: "UA-60403362-1",
2018-06-15 08:37:39 +02:00
markdown: {
2018-06-28 00:00:24 +02:00
config: md => md.use(require("markdown-it-wikilinks")({
makeAllLinksAbsolute: true,
baseURL: "/glossary.html#",
uriSuffix: "",
htmlAttributes: {
class: "wikilink"
}
}))
2018-06-15 08:37:39 +02:00
}
2018-07-12 17:21:42 +02:00
};