Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for permalink (0.14 seconds)

  1. 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)
  2. 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: null
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Apr 01 16:16:24 GMT 2026
    - 9.9K bytes
    - Click Count (0)
  3. 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)
Back to Top