mirror of
https://github.com/donnemartin/system-design-primer.git
synced 2025-12-16 01:48:56 +03:00
* Add mkdocs configuration and update index page for System Design Primer: Update Edition - Created mkdocs.yml to establish a structured documentation site with multilingual support. - Updated index.md to reflect the new edition's focus on 2025 software development trends, including Kubernetes and Generative AI. - Enhanced navigation with links to contributing guidelines, changelog, and language-specific resources for improved accessibility. * Move images and solution under docs * Add MkDocs deploy workflow * Add MkDocs deploy workflow * Update navigation and image paths in documentation - Renamed "Start Here" to "Study Guide Start Here" in mkdocs.yml for clarity. - Added "System Design Interview Questions" to the navigation. - Updated image paths in multiple language documentation files to ensure correct referencing. - Enhanced multilingual support by maintaining consistent image paths across all language versions. * merge resloved * Move images and solution under docs
67 lines
1.7 KiB
YAML
67 lines
1.7 KiB
YAML
site_name: System Design Primer Update
|
|
theme:
|
|
name: material
|
|
language: en
|
|
features:
|
|
- content.code.annotate
|
|
- content.tabs.link
|
|
- navigation.sections
|
|
- navigation.tabs
|
|
- navigation.top
|
|
- search.highlight
|
|
- search.suggest
|
|
|
|
plugins:
|
|
- i18n:
|
|
default_language: en
|
|
languages:
|
|
en: English
|
|
|
|
|
|
markdown_extensions:
|
|
- admonition
|
|
- pymdownx.superfences:
|
|
custom_fences:
|
|
- name: mermaid
|
|
class: mermaid
|
|
format: !!python/name:pymdownx.superfences.fence_code_format
|
|
- pymdownx.details
|
|
- pymdownx.highlight
|
|
- pymdownx.emoji
|
|
- pymdownx.mark
|
|
- pymdownx.tabbed
|
|
- pymdownx.tasklist
|
|
- toc:
|
|
permalink: true
|
|
|
|
|
|
|
|
nav:
|
|
- Home: en/index.md
|
|
- About: https://github.com/ido777/system-design-primer-update/blob/main/README.md
|
|
- Contributing: https://github.com/ido777/system-design-primer-update/blob/main/CONTRIBUTING.md
|
|
- License: https://github.com/ido777/system-design-primer-update/blob/main/LICENSE.md
|
|
- Changelog: https://github.com/ido777/system-design-primer-update/blob/main/CHANGELOG.md
|
|
|
|
- English:
|
|
- Overview: en/index.md
|
|
- Study Guide Start Here: en/study_guide.md
|
|
- System Design Interview Questions: en/solutions.md
|
|
- System Design at a Glance: en/design-glance.md
|
|
|
|
- Translations (Not up to date):
|
|
- 简体中文 (Simplified Chinese):
|
|
- 简体中文主页: zh/design-glance.md
|
|
|
|
- 繁體中文 (Traditional Chinese):
|
|
- 繁體中文首頁: zh-Hant/design-glance.md
|
|
|
|
- العربية (Arabic):
|
|
- الصفحة الرئيسية: ar/design-glance.md
|
|
|
|
- 日本語 (Japanese):
|
|
- 日本語のホーム: ja/design-glance.md
|
|
|
|
- Türkçe (Turkish):
|
|
- Türkçe Anasayfa: tr/design-glance.md
|