Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for replace_code_includes_with_placeholders (0.17 seconds)

  1. scripts/doc_parsing_utils.py

        for line_no, line in enumerate(lines, start=1):
            if CODE_INCLUDE_RE.match(line):
                includes.append(CodeIncludeInfo(line_no=line_no, line=line))
        return includes
    
    
    def replace_code_includes_with_placeholders(text: list[str]) -> list[str]:
        """
        Replace code includes with placeholders.
        """
    
        modified_text = text.copy()
        includes = extract_code_includes(text)
        for include in includes:
    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