- Sort Score
- Num 10 results
- Language All
Results 1 - 6 of 6 for permalink (0.06 seconds)
-
scripts/doc_parsing_utils.py
- `hashes` - string of hashes representing header level (e.g., "###") - `permalink` - permalink string (e.g., "{#permalink}") """ headers: list[HeaderPermalinkInfo] = [] in_code_block3 = False in_code_block4 = False for line_no, line in enumerate(lines, start=1): if not (in_code_block3 or in_code_block4): if line.startswith("```"):
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:37:41 GMT 2026 - 23.5K bytes - Click Count (0) -
scripts/mkdocs_hooks.py
def on_page_markdown( markdown: str, *, page: Page, config: MkDocsConfig, files: Files ) -> str: # Set metadata["social"]["cards_layout_options"]["title"] to clean title (without # permalink) title = page.title clean_title = title.split("{ #")[0] if clean_title: page.meta.setdefault("social", {}) page.meta["social"].setdefault("cards_layout_options", {})
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Tue Feb 17 09:59:14 GMT 2026 - 6.6K bytes - Click Count (0) -
docs/en/mkdocs.yml
markdown_extensions: material.extensions.preview: targets: include: - '*' abbr: null attr_list: null footnotes: null md_in_html: null tables: null toc: permalink: true pymdownx.betterem: null pymdownx.caret: null pymdownx.highlight: line_spans: __span linenums_style: pymdownx-inline pymdownx.inlinehilite: null pymdownx.keys: nullCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Apr 01 16:16:24 GMT 2026 - 9.9K bytes - Click Count (0) -
scripts/docs.py
if match: hashes, title, _permalink = match.groups() if (not _permalink) or update_existing: slug = slugify( visible_text_extractor.extract_visible_text( strip_markdown_links(title) ) ) if slug in permalinks:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 17:46:10 GMT 2026 - 25.4K bytes - Click Count (0) -
.pre-commit-config.yaml
entry: uv run ty check fastapi require_serial: true language: unsupported pass_filenames: false - id: add-permalinks-pages language: unsupported name: add-permalinks-pages entry: uv run ./scripts/docs.py add-permalinks-pages args: - --update-existing files: ^docs/en/docs/.*\.md$ - id: generate-readme language: unsupportedCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Apr 03 12:06:36 GMT 2026 - 2.6K bytes - Click Count (1) -
docs/en/docs/release-notes.md
* 👷 Upgrade `latest-changes` GitHub Action and pin `actions/checkout@v5`. PR [#14403](https://github.com/fastapi/fastapi/pull/14403) by [@svlandeg](https://github.com/svlandeg). * 🛠️ Add `add-permalinks` and `add-permalinks-page` to `scripts/docs.py`. PR [#14033](https://github.com/fastapi/fastapi/pull/14033) by [@YuriiMotov](https://github.com/YuriiMotov).
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Apr 03 12:07:04 GMT 2026 - 631K bytes - Click Count (0)