34 lines
662 B
TOML
34 lines
662 B
TOML
baseURL = 'https://pit-lang.org/'
|
|
languageCode = 'en-us'
|
|
title = 'ƿit'
|
|
theme = 'knr'
|
|
|
|
[markup]
|
|
[markup.highlight]
|
|
noClasses = false
|
|
style = 'monokailight'
|
|
[markup.goldmark]
|
|
[markup.goldmark.renderer]
|
|
unsafe = true
|
|
|
|
[menus]
|
|
[[menus.main]]
|
|
name = 'Getting Started'
|
|
pageRef = '/start/'
|
|
weight = 10
|
|
[[menus.main]]
|
|
name = 'Documentation'
|
|
pageRef = '/docs/'
|
|
weight = 20
|
|
|
|
[module]
|
|
[[module.mounts]]
|
|
source = "content"
|
|
target = "content"
|
|
[[module.mounts]]
|
|
source = "../docs"
|
|
target = "content/docs"
|
|
|
|
[params]
|
|
description = 'An actor-based scripting language for building concurrent applications.'
|