Files
documentation/mkdocs.yml

179 lines
6.8 KiB
YAML
Raw Permalink Normal View History

site_name: Armbian Documentation
site_author: "Armbian team"
site_url: https://docs.armbian.com
site_description: Official documentation for Armbian OS and Armbian build framework
copyright: Copyright © 2013 - 2024 Armbian.com
2018-11-08 20:12:28 +01:00
repo_url: https://github.com/armbian/documentation
edit_uri: edit/main/docs/
repo_name: armbian/documentation
2024-10-14 10:14:37 +02:00
theme:
name: material
custom_dir: overrides
2025-08-24 13:14:11 +02:00
logo: images/armbian-logo.png
icon:
repo: fontawesome/brands/github-alt
palette:
- scheme: default
primary: red
accent: red
toggle:
2024-10-14 10:14:37 +02:00
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- scheme: slate
primary: red
accent: red
toggle:
icon: material/toggle-switch
name: Switch to light mode
favicon: images/logo.png
features:
2024-10-14 10:14:37 +02:00
- content.action.edit
- content.action.view
- content.code.copy
- navigation.tabs
- navigation.top
- navigation.expand
- toc.integrate
2024-10-23 21:56:35 +02:00
extra_css:
- css/armbian-extra.css
extra:
analytics:
provider: google
property: UA-284946-9
social:
- icon: fontawesome/brands/github
link: https://github.com/armbian
- icon: fontawesome/solid/house
link: https://www.armbian.com/
- icon: fontawesome/brands/twitter
link: https://twitter.com/armbian
2020-10-04 06:48:24 +02:00
plugins:
2024-11-20 16:13:38 +00:00
- search
- redirects:
redirect_maps:
'User-Guide_Allwinner_overlays.md': 'User-Guide_Armbian_overlays.md'
2024-10-13 11:36:13 +02:00
# - with-pdf:
# author: Armbian documentation team
# copyright: © 2024 by Armbian
# cover_title: Armbian documentation
# cover_subtitle: Linux for ARM development boards
2020-10-04 06:48:24 +02:00
markdown_extensions:
- smarty
- attr_list
- md_in_html
- pymdownx.blocks.caption
- footnotes
- mdx_truly_sane_lists
- toc:
permalink: True
- pymdownx.highlight:
auto_title: true
linenums: true
use_pygments: true
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
2024-10-13 11:36:13 +02:00
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
2025-04-26 17:47:43 +02:00
- name: custombash
class: custom-bash-block
format: !!python/name:pymdownx.superfences.fence_code_format
- markdown.extensions.admonition # Highlighted warning/info blocks
- markdown.extensions.meta # Define meta data (page title and description) at the top of the Markdown document
- markdown.extensions.tables # Tables
- pymdownx.betterem: # More intuitive emphasis handling
smart_enable: all # Even smarter for both (asterisk and underscore) syntax => GitHub-like
- pymdownx.details # Collapsible details blocks
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
2024-10-14 10:14:37 +02:00
- pymdownx.keys # Keyboard key symbols
- pymdownx.magiclink: # Auto-links non angle bracket URLs and email addresses and allows to shorten and visualise Git repo links
repo_url_shortener: true
repo_url_shorthand: true
- pymdownx.superfences # Indented code blocks, e.g. within lists, admonition, details or tabbed blocks, implies pymdownx.highlight
- pymdownx.tabbed: # Tabbed content blocks
alternate_style: true
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
combine_header_slug: true
2020-07-29 15:14:17 -04:00
nav:
- 'ARMBIAN OS':
- 'Introduction': 'index.md'
- 'Getting Started' : 'User-Guide_Getting-Started.md'
- 'Advanced Usage' :
Update documentation to last discussed state (#760) * Typo fix * Typo fix * Add link to collaboration guidelines * Reorder the SD cards hints * Use the same form in the whole document Don't mix SD-card and SD card. Decide for one (split form). * Comma fixes * Rephrase * Some minor updates to the Upates section * Minor update to the Troubleshotting section * Minor rephrase to the report bugs section * Rephrase link to Configuration page * Use admonition for dist-upgrade instructions * Change title * Rephrase intro into page * Update standard customizations Links are broken for now! * Update sound section * Update sections about screen resolutions * Update CPU freq section * Update swap section * Update package downgrade section * Update toogle boot output section * Update other boot related sections * Disable the network configuration section * Update the APT mirror config section * Move all configuration tasks into the Advanced section * Whitespace fix * Move kernel section and fix command * Move the example for building a driver * Move the docker example * Drop the User-Guide_Advanced-Features.md file Everyting has been merged into User-Guide_Advanced-Configuration.md * Fix links to armbian-config * Fix a bunch of links * Drop redundant sub-section This has been moed to Getting started * Fix a bunch of typos * Update docs/User-Guide_Getting-Started.md Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * Typo and grammatical fixes pointed out by coderabbitai * Fix markdown related issues pointed out by coderabbitai * Drop old section about network configuration * Move legacy info into admonition * Add nore about pipewire replacing pulseaudio * Add minor detail that xrandr requires a graphical session * Add a bit more content to building out-of-tree modules * The cpufreq workaround is for legacy versions only * Clarify the situation when this workaround is necessary * Add link to armbian-config * Merge kernel switch and downgrade and update example * Rephrase according to coderabbitai Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * Fix two typos discovered by the coderabbitai --------- Co-authored-by: Werner <3305006+EvilOlaf@users.noreply.github.com> Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
2025-06-23 13:08:53 +02:00
- 'Advanced Configuration': 'User-Guide_Advanced-Configuration.md'
- 'Networking' : 'User-Guide_Networking.md'
- 'Firstboot config': 'User-Guide_Autoconfig.md'
#- 'Device tree overlays' : 'User-Guide_Armbian_overlays.md'
- 'Troubleshooting and Recovery' : 'User-Guide_Troubleshooting.md'
#- 'Recovery' : 'User-Guide_Recovery.md'
- 'FAQ' : 'User-Guide_FAQ.md'
- 'Appendix' :
- 'Changelog' : 'Release_Changelog.md'
- 'Release Model' : 'Process_Release-Model.md'
- 'Unit Test Status' : '/'
- 'ARMBIAN CONFIG':
- 'Overview': 'User-Guide_Armbian-Config.md'
- 'System': 'User-Guide_Armbian-Config/System.md'
- 'Network': 'User-Guide_Armbian-Config/Network.md'
- 'Localisation': 'User-Guide_Armbian-Config/Localisation.md'
2024-10-24 12:54:25 +02:00
- 'ARMBIAN SOFTWARE':
- 'Overview': 'User-Guide_Armbian-Software.md'
- 'Armbian': 'User-Guide_Armbian-Software/Armbian.md'
2025-04-28 17:39:54 +02:00
- 'Backup': 'User-Guide_Armbian-Software/Backup.md'
- 'Containers': 'User-Guide_Armbian-Software/Containers.md'
2025-04-12 12:50:21 +02:00
- 'Database': 'User-Guide_Armbian-Software/Database.md'
- 'Development tools': 'User-Guide_Armbian-Software/DevTools.md'
2024-11-07 18:25:03 +01:00
- 'DNS blockers': 'User-Guide_Armbian-Software/DNS.md'
- 'Downloaders': 'User-Guide_Armbian-Software/Downloaders.md'
- 'Finance': 'User-Guide_Armbian-Software/Finance.md'
- 'Home automation': 'User-Guide_Armbian-Software/HomeAutomation.md'
2024-10-24 13:16:25 +02:00
- 'Management': 'User-Guide_Armbian-Software/Management.md'
- 'Media': 'User-Guide_Armbian-Software/Media.md'
- 'Monitoring': 'User-Guide_Armbian-Software/Monitoring.md'
- 'Music': 'User-Guide_Armbian-Software/Music.md'
- 'Netconfig': 'User-Guide_Armbian-Software/Netconfig.md'
- 'Printing': 'User-Guide_Armbian-Software/Printing.md'
2025-05-03 08:34:49 +02:00
- 'VPN': 'User-Guide_Armbian-Software/VPN.md'
- 'Web hosting': 'User-Guide_Armbian-Software/WebHosting.md'
# - 'Desktops': 'User-Guide_Armbian-Software/Desktops.md'
- 'ARMBIAN BUILD FRAMEWORK' :
- 'Overview' : 'Developer-Guide_Overview.md'
- 'Getting Started' : 'Developer-Guide_Build-Preparation.md'
- 'Build Commands' : 'Developer-Guide_Build-Commands.md'
- 'Build Switches' : 'Developer-Guide_Build-Switches.md'
- 'User Configurations' : 'Developer-Guide_User-Configurations.md'
- 'Extensions Hooks' : 'Developer-Guide_Extensions-Hooks.md'
- 'Building with Multipass' : 'Developer-Guide_Building-with-Multipass.md'
- 'Building with Docker' : 'Developer-Guide_Building-with-Docker.md'
- 'Extensions' : 'Developer-Guide_Extensions.md'
2024-10-13 11:36:13 +02:00
- 'ARMBIAN COMMUNITY' :
- 'Forums' : 'Community_Forums.md'
- 'Github' : 'Community_Github.md'
- 'Chat' : 'Community_IRC.md'
- 'CONTRIBUTE' :
- 'Contribute' : 'Process_Contribute.md'
- 'Armbian config': 'Contribute/Armbian-config.md'
2025-04-12 12:50:21 +02:00
- 'Wifi performance tests': 'WifiPerformance.md'
- 'Mirrors' : 'Mirrors.md'
- 'Automation' : 'Process_CI.md'
- 'Board Support Rules' : 'User-Guide_Board-Support-Rules.md'