Reorg and cleanup of economics section of docs (#14868) (#14889)

This commit is contained in:
mergify[bot]
2021-01-28 16:07:31 -07:00
committed by GitHub
parent 7e2e0d4a86
commit 71899deb53
99 changed files with 44906 additions and 319 deletions

View File

@@ -1,3 +1,5 @@
const math = require('remark-math');
const katex = require('rehype-katex');
module.exports = {
title: "Solana Docs",
tagline:
@@ -8,6 +10,15 @@ module.exports = {
organizationName: "solana-labs", // Usually your GitHub org/user name.
projectName: "solana", // Usually your repo name.
onBrokenLinks: 'throw',
stylesheets: [
{
href: '/katex/katex.min.css',
type: 'text/css',
integrity:
'sha384-AfEj0r4/OFrOo5t7NnNe46zW/tFgW6x/bCJG8FqQCEo3+Aro6EYUG4+cU+KJWu/X',
crossorigin: 'anonymous',
},
],
themeConfig: {
navbar: {
logo: {
@@ -112,6 +123,8 @@ module.exports = {
path: "src",
routeBasePath: "/",
sidebarPath: require.resolve("./sidebars.js"),
remarkPlugins: [math],
rehypePlugins: [katex],
},
theme: {
customCss: require.resolve("./src/css/custom.css"),