Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for replace_markdown_links (0.1 seconds)

  1. scripts/doc_parsing_utils.py

        if title:
            link = f'[{text}]({url} "{title}")'
        else:
            link = f"[{text}]({url})"
    
        if attributes:
            link += f"{{{attributes}}}"
    
        return link
    
    
    def replace_markdown_links(
        text: list[str],
        links: list[MarkdownLinkInfo],
        original_links: list[MarkdownLinkInfo],
        lang_code: str,
    ) -> list[str]:
        """
    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