Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for MarkdownLinkInfo (0.16 seconds)

  1. scripts/doc_parsing_utils.py

    
    def extract_markdown_links(lines: list[str]) -> list[MarkdownLinkInfo]:
        """
        Extract all markdown links from the given lines.
    
        Return list of MarkdownLinkInfo, where each dict contains:
        - `line_no` - line number (1-based)
        - `url` - link URL
        - `text` - link text
        - `title` - link title (if any)
        """
    
        links: list[MarkdownLinkInfo] = []
        for line_no, line in enumerate(lines, start=1):
    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)
Back to Top