78 lines
1.7 KiB
YAML
78 lines
1.7 KiB
YAML
site_name: ForeignThon
|
|
site_url: https://foreignthon.keshavanand.net
|
|
site_description: Write Python in any human language
|
|
repo_url: https://git.keshavanand.net/foreign-thon/
|
|
repo_name: foreignthon
|
|
edit_uri: ""
|
|
|
|
theme:
|
|
name: material
|
|
|
|
palette:
|
|
# Dark mode default
|
|
- scheme: slate
|
|
primary: deep purple
|
|
accent: cyan
|
|
toggle:
|
|
icon: material/weather-sunny
|
|
name: Switch to light mode
|
|
|
|
# Light mode
|
|
- scheme: default
|
|
primary: deep purple
|
|
accent: cyan
|
|
toggle:
|
|
icon: material/weather-night
|
|
name: Switch to dark mode
|
|
|
|
font:
|
|
text: Inter
|
|
code: JetBrains Mono
|
|
|
|
features:
|
|
- navigation.tabs
|
|
- navigation.sections
|
|
- navigation.top
|
|
- navigation.instant
|
|
- search.highlight
|
|
- search.suggest
|
|
- content.code.copy
|
|
- content.code.annotate
|
|
- content.tabs.link
|
|
- toc.follow
|
|
|
|
nav:
|
|
- Home: index.md
|
|
- Getting Started: getting-started.md
|
|
- CLI Reference: cli-reference.md
|
|
- Postfix Syntax: postfix-syntax.md
|
|
- Custom Packs: custom-packs.md
|
|
- Language Packs:
|
|
- Overview: language-packs/index.md
|
|
# LANGS_NAV_START
|
|
# LANGS_NAV_END
|
|
- Add your language: language-packs/template.md
|
|
- Contributing:
|
|
- Core: contributing/core.md
|
|
- Language Packs: contributing/language-packs.md
|
|
- Dev:
|
|
- Architecture: dev/architecture.md
|
|
- Releasing: dev/releasing.md
|
|
|
|
plugins:
|
|
- search
|
|
|
|
markdown_extensions:
|
|
- pymdownx.highlight:
|
|
anchor_linenums: true
|
|
- pymdownx.inlinehilite
|
|
- pymdownx.snippets
|
|
- pymdownx.superfences
|
|
- admonition
|
|
- pymdownx.details
|
|
- attr_list
|
|
- md_in_html
|
|
- tables
|
|
- toc:
|
|
permalink: true
|