Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ repos:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
exclude: ^mkdocs\.yml$
- id: check-added-large-files

- repo: https://github.com/astral-sh/ruff-pre-commit
Expand Down
27 changes: 13 additions & 14 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ site_author: Bordumb / Renbytes
repo_url: https://github.com/renbytes/arla
repo_name: arla

use_directory_urls: false

docs_dir: docs

# Copyright
Expand Down Expand Up @@ -62,16 +60,7 @@ plugins:
options:
show_root_heading: true
show_source: false
- blog

extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/renbytes
- icon: fontawesome/brands/python
link: https://pypi.org/project/arla/
blog:
authors_file: "{blog}/.authors.yml"
- rss

# Page tree
nav:
Expand All @@ -96,6 +85,16 @@ nav:
- "agent-engine": api/agent-engine.md
- Blog: blog/index.md

# Customization
extra:
blog:
authors_file: "{blog}/.authors.yml"
social:
- icon: fontawesome/brands/github
link: https://github.com/renbytes
- icon: fontawesome/brands/python
link: https://pypi.org/project/arla/ # When we publish it

# Markdown extensions
markdown_extensions:
- pymdownx.highlight:
Expand All @@ -114,8 +113,8 @@ markdown_extensions:
- pymdownx.tabbed:
alternate_style: true
- pymdownx.emoji:
emoji_index: pymdownx.emoji.twemoji
emoji_generator: pymdownx.emoji.to_svg
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg

extra_css:
- stylesheets/custom.css
Loading