| 1 | site_name: WSL |
| 2 | site_description: Windows Subsystem for Linux developer and architecture documentation |
| 3 | |
| 4 | nav: |
| 5 | - 'Home': 'index.md' |
| 6 | - 'Getting started': |
| 7 | - 'Building and testing WSL': 'dev-loop.md' |
| 8 | - 'Debugging WSL': 'debugging.md' |
| 9 | - 'WSL architecture': |
| 10 | - 'Overview': technical-documentation/index.md |
| 11 | - 'wsl.exe': technical-documentation/wsl.exe.md |
| 12 | - 'wslg.exe': technical-documentation/wslg.exe.md |
| 13 | - 'wslconfig.exe': technical-documentation/wslconfig.exe.md |
| 14 | - 'wslhost.exe': technical-documentation/wslhost.exe.md |
| 15 | - 'wslrelay.exe': technical-documentation/wslrelay.exe.md |
| 16 | - 'wslservice.exe': technical-documentation/wslservice.exe.md |
| 17 | - 'mini_init': technical-documentation/mini_init.md |
| 18 | - 'init': technical-documentation/init.md |
| 19 | - 'session leader': technical-documentation/session-leader.md |
| 20 | - 'relay': technical-documentation/relay.md |
| 21 | - 'gns': technical-documentation/gns.md |
| 22 | - 'localhost': technical-documentation/localhost.md |
| 23 | - 'plan9': technical-documentation/plan9.md |
| 24 | - 'Technical documentation': |
| 25 | - 'Boot process': technical-documentation/boot-process.md |
| 26 | - 'Interop': technical-documentation/interop.md |
| 27 | - 'Drvfs & Plan9': technical-documentation/drvfs.md |
| 28 | - 'Systemd': technical-documentation/systemd.md |
| 29 | # The API reference tree (docs/api-reference) is appended here; its |
| 30 | # navigation is driven by the per-folder .pages files (awesome-pages plugin). |
| 31 | - '...' |
| 32 | |
| 33 | plugins: |
| 34 | - search |
| 35 | - awesome-pages |
| 36 | - mermaid2: |
| 37 | version: 11.4.1 |
| 38 | arguments: |
| 39 | securityLevel: 'loose' |
| 40 | |
| 41 | theme: |
| 42 | name: material |
| 43 | features: |
| 44 | - navigation.tracking |
| 45 | - navigation.sections |
| 46 | - navigation.top |
| 47 | - navigation.indexes |
| 48 | - toc.follow |
| 49 | - content.code.copy |
| 50 | - search.suggest |
| 51 | - search.highlight |
| 52 | palette: |
| 53 | - media: "(prefers-color-scheme: light)" |
| 54 | scheme: default |
| 55 | primary: indigo |
| 56 | accent: indigo |
| 57 | toggle: |
| 58 | icon: material/weather-night |
| 59 | name: Switch to dark mode |
| 60 | - media: "(prefers-color-scheme: dark)" |
| 61 | scheme: slate |
| 62 | primary: indigo |
| 63 | accent: indigo |
| 64 | toggle: |
| 65 | icon: material/weather-sunny |
| 66 | name: Switch to light mode |
| 67 | |
| 68 | markdown_extensions: |
| 69 | - admonition |
| 70 | - attr_list |
| 71 | - md_in_html |
| 72 | - tables |
| 73 | - toc: |
| 74 | permalink: true |
| 75 | - pymdownx.highlight: |
| 76 | anchor_linenums: true |
| 77 | - pymdownx.inlinehilite |
| 78 | - pymdownx.snippets |
| 79 | - pymdownx.details |
| 80 | - pymdownx.superfences: |
| 81 | custom_fences: |
| 82 | - name: mermaid |
| 83 | class: mermaid |
| 84 | format: !!python/name:mermaid2.fence_mermaid_custom |