1
0
Fork 0
conlang.phundrak.com/docs/.vuepress/config.ts

90 lines
2.1 KiB
TypeScript
Raw Normal View History

2023-04-07 12:02:11 +00:00
import { defineUserConfig, defaultTheme } from 'vuepress';
import { removeHtmlExtensionPlugin } from 'vuepress-plugin-remove-html-extension';
import head from './head';
2023-02-26 18:20:43 +00:00
export default defineUserConfig({
2023-04-07 12:02:11 +00:00
lang: 'en-US',
2023-02-26 18:20:43 +00:00
title: "Phundrak's Conlangs",
head: head,
2023-04-07 12:02:11 +00:00
description: 'Documentation of the constructed languages made by Phundrak',
2023-02-26 18:20:43 +00:00
markdown: {
html: false,
linkify: true,
typographer: true,
headers: {
level: [1, 2, 3, 4, 5],
},
},
plugins: [removeHtmlExtensionPlugin()],
theme: defaultTheme({
sidebarDepth: 5,
2023-04-07 12:02:11 +00:00
repo: 'https://labs.phundrak.com/phundrak/conlang.phundrak.com',
2023-02-26 18:20:43 +00:00
sidebar: [
{
2023-04-07 12:02:11 +00:00
text: 'Index',
link: '/',
2023-02-26 18:20:43 +00:00
},
2023-04-07 12:08:58 +00:00
'/about',
2023-02-26 18:20:43 +00:00
{
2023-04-07 12:02:11 +00:00
text: 'Eittlandic',
link: '/eittlandic/',
2023-02-26 18:20:43 +00:00
collapsible: true,
children: [
{
2023-04-07 12:02:11 +00:00
text: 'The Country',
link: '/eittlandic/country',
2023-02-26 18:20:43 +00:00
},
{
2023-04-07 12:02:11 +00:00
text: 'Linguistic Typology',
link: '/eittlandic/typology',
2023-02-26 18:20:43 +00:00
},
{
2023-04-07 12:02:11 +00:00
text: 'Phonology',
link: '/eittlandic/phonology',
2023-02-26 18:20:43 +00:00
},
{
2023-04-07 12:02:11 +00:00
text: 'Syntax',
link: '/eittlandic/syntax',
2023-02-26 18:20:43 +00:00
},
{
2023-04-07 12:02:11 +00:00
text: 'Dictionary',
link: '/eittlandic/dictionary',
2023-02-26 18:20:43 +00:00
},
],
},
{
2023-04-07 12:02:11 +00:00
text: 'Proto-Ñyqy',
link: '/proto-nyqy/',
2023-02-26 18:20:43 +00:00
collapsible: true,
children: [
{
2023-04-07 12:02:11 +00:00
text: 'Introduction',
link: '/proto-nyqy/introduction',
2023-02-26 18:20:43 +00:00
},
{
2023-04-07 12:02:11 +00:00
text: 'Culture and People',
link: '/proto-nyqy/culture-and-people',
2023-02-26 18:20:43 +00:00
},
{
2023-04-07 12:02:11 +00:00
text: 'Linguistic Typology',
link: '/proto-nyqy/typology',
2023-02-26 18:20:43 +00:00
},
{
2023-04-07 12:02:11 +00:00
text: 'Phonology',
link: '/proto-nyqy/phonology',
2023-02-26 18:20:43 +00:00
},
{
2023-04-07 12:02:11 +00:00
text: 'Syntax',
link: '/proto-nyqy/syntax',
2023-02-26 18:20:43 +00:00
},
{
2023-04-07 12:02:11 +00:00
text: 'Dictionary',
link: '/proto-nyqy/dictionary',
2023-02-26 18:20:43 +00:00
},
],
},
2023-04-07 12:02:11 +00:00
'/zikãti/',
2023-02-26 18:20:43 +00:00
],
}),
});