- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 507 for mkdocs (0.04 sec)
-
docs/en/mkdocs.yml
INHERIT: ../en/mkdocs.env.yml site_name: FastAPI site_description: FastAPI framework, high performance, easy to learn, fast to code, ready for production site_url: https://fastapi.tiangolo.com/ theme: name: material custom_dir: ../en/overrides palette: - media: (prefers-color-scheme) toggle: icon: material/lightbulb-auto name: Switch to light mode - media: '(prefers-color-scheme: light)' scheme: defaultRegistered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 10:44:55 UTC 2025 - 9.2K bytes - Viewed (0) -
docs/en/mkdocs.env.yml
# Define this here and not in the main mkdocs.yml file because that one is auto # updated and written, and the script would remove the env var markdown_extensions: pymdownx.highlight:
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Thu Nov 20 10:45:16 UTC 2025 - 223 bytes - Viewed (0) -
requirements-docs.txt
-e . -r requirements-docs-tests.txt mkdocs-material==9.7.0 mdx-include >=1.4.1,<2.0.0 mkdocs-redirects>=1.2.1,<1.3.0 typer == 0.16.0 pyyaml >=5.3.1,<7.0.0 # For Material for MkDocs, Chinese search jieba==0.42.1 # For image processing by Material for MkDocs pillow==11.3.0 # For image processing by Material for MkDocs cairosvg==2.8.2 mkdocstrings[python]==0.30.1 griffe-typingdoc==0.3.0 griffe-warnings-deprecated==1.1.0
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 14:39:10 UTC 2025 - 554 bytes - Viewed (0) -
scripts/docs.py
post_content = content[post_start:] new_content = pre_content + message + post_content # Remove content between <!-- only-mkdocs --> and <!-- /only-mkdocs --> new_content = re.sub( r"<!-- only-mkdocs -->.*?<!-- /only-mkdocs -->", "", new_content, flags=re.DOTALL, ) return new_content @app.command() def generate_readme() -> None:
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sun Dec 21 17:40:17 UTC 2025 - 16.9K bytes - Viewed (0) -
.github/workflows/docs.yml
- uses: actions/setup-python@v6 with: python-version: 3.x - run: pip install mkdocs-material mkdocs-redirects - name: Generate Docs run: ./test_docs.sh - uses: actions/upload-artifact@v6 with: name: docsRegistered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Fri Dec 12 23:30:30 UTC 2025 - 987 bytes - Viewed (0) -
.github/workflows/build-docs.yml
id: filter with: filters: | docs: - README.md - docs/** - docs_src/** - requirements-docs.txt - pyproject.toml - mkdocs.yml - mkdocs.env.yml - .github/workflows/build-docs.yml - .github/workflows/deploy-docs.yml - scripts/mkdocs_hooks.py langs: needs:Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sun Dec 21 17:40:17 UTC 2025 - 3.3K bytes - Viewed (0) -
scripts/mkdocs_hooks.py
from functools import lru_cache from pathlib import Path from typing import Any, Union import material from mkdocs.config.defaults import MkDocsConfig from mkdocs.structure.files import File, Files from mkdocs.structure.nav import Link, Navigation, Section from mkdocs.structure.pages import Page non_translated_sections = [ "reference/", "release-notes.md", "fastapi-people.md", "external-links.md", "newsletter.md",Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 21:25:59 UTC 2025 - 5.6K bytes - Viewed (0) -
docs/en/docs/management-tasks.md
When there's a first translation for a language, it will have a `docs/{lang code}/docs/index.md` translated file and a `docs/{lang code}/mkdocs.yml`. For example, for Bosnian, it would be: * `docs/bs/docs/index.md` * `docs/bs/mkdocs.yml` The `mkdocs.yml` file will have only the following content: ```YAML INHERIT: ../en/mkdocs.yml ```
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 14.2K bytes - Viewed (0) -
.gitignore
release.properties local.properties .vscode .idea *.iml *.ipr *.iws *.log classes obj .DS_Store # Special Mkdocs files docs/4.x docs/changelog.md docs/contributing.md docs/index.md # jenv /.java-version /site/
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sat Oct 11 09:17:37 UTC 2025 - 354 bytes - Viewed (0) -
docs/en/docs/css/custom.css
@import url(https://fonts.googleapis.com/css2?family=Noto+Color+Emoji&display=swap); /* Override default code font in Material for MkDocs to Fira Code */ :root { --md-code-font: "Fira Code", monospace, "Noto Color Emoji"; } /* Override default regular font in Material for MkDocs to include Noto Color Emoji */ :root { --md-text-font: "Roboto", "Noto Color Emoji"; } .termynal-comment { color: #4a968f;
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Fri Nov 28 15:55:15 UTC 2025 - 3.7K bytes - Viewed (0)