Кастомный Header: Добро пожаловать на My python docs

MkDocs — Static Site Generator for Project Documentation

MkDocs is a fast, simple, and modern static site generator that’s designed specifically for building project documentation. It uses Markdown for content and YAML for configuration.


Key Features


Why Use MkDocs

Benefit Detail
Simplicity Minimal setup, just Markdown + YAML.
Focus on docs Unlike general static site tools, MkDocs is purpose-built for documentation.
Active ecosystem Extensions, plugins, and themes make it highly adaptable.
Easy deployment mkdocs gh-deploy can push your docs directly to GitHub Pages.

Basic Usage

Here are some common MkDocs commands:

# Install MkDocs
pip install mkdocs

# Create a new project
mkdocs new my-project
cd my-project

# Preview locally
mkdocs serve

# Build the site (output goes to the "site/" directory)
mkdocs build

# Deploy to GitHub Pages
mkdocs gh-deploy