Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 116 for mermaid (1.61 seconds)

  1. scripts/tests/test_translation_fixer/test_code_blocks/data/translated_doc_mermaid_translated.md

    ```
    
    And even more text
    
    ```json
    {
        // This is a sample JSON code block
        "greeting": "Hello, world!" // Greeting
    }
    ```
    
    Диаграма Mermaid
    
    ```mermaid
    flowchart LR
        stone(philosophers-stone) -->|требует| harry-1[harry v1]
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 10 21:48:08 GMT 2026
    - 889 bytes
    - Click Count (0)
  2. scripts/tests/test_translation_fixer/test_code_blocks/data/translated_doc_wrong_lang_code_2.md

    ```
    
    And even more text
    
    ```json
    {
        // This is a sample JSON code block
        "greeting": "Hello, world!" // Greeting
    }
    ```
    
    Диаграма Mermaid
    
    ```mermaid
    flowchart LR
        stone(philosophers-stone) -->|requires| harry-1[harry v1]
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 10 21:48:08 GMT 2026
    - 942 bytes
    - Click Count (0)
  3. scripts/tests/test_translation_fixer/test_code_blocks/data/en_doc.md

    ```
    
    And even more text
    
    ```json
    {
        // This is a sample JSON code block
        "greeting": "Hello, world!" // Greeting
    }
    ```
    
    Mermaid diagram
    
    ```mermaid
    flowchart LR
        stone(philosophers-stone) -->|requires| harry-1[harry v1]
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 10 21:48:08 GMT 2026
    - 874 bytes
    - Click Count (0)
  4. scripts/tests/test_translation_fixer/test_code_blocks/data/translated_doc_number_gt.md

    ```
    
    And even more text
    
    ```json
    {
        // This is a sample JSON code block
        "greeting": "Hello, world!" // Greeting
    }
    ```
    
    Диаграма Mermaid
    
    ```mermaid
    flowchart LR
        stone(philosophers-stone) -->|requires| harry-1[harry v1]
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 10 21:48:08 GMT 2026
    - 926 bytes
    - Click Count (0)
  5. scripts/tests/test_translation_fixer/test_code_blocks/data/translated_doc_wrong_lang_code.md

    ```
    
    And even more text
    
    ```json
    {
        // This is a sample JSON code block
        "greeting": "Hello, world!" // Greeting
    }
    ```
    
    Диаграма Mermaid
    
    ```mermaid
    flowchart LR
        stone(philosophers-stone) -->|requires| harry-1[harry v1]
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 10 21:48:08 GMT 2026
    - 946 bytes
    - Click Count (0)
  6. scripts/tests/test_translation_fixer/test_code_blocks/data/translated_doc_number_lt.md

    ```
    
    And even more text
    
    ```json
    {
        // This is a sample JSON code block
        "greeting": "Hello, world!" // Greeting
    }
    ```
    
    Диаграма Mermaid
    
    ```mermaid
    flowchart LR
        stone(philosophers-stone) -->|requires| harry-1[harry v1]
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 10 21:48:08 GMT 2026
    - 810 bytes
    - Click Count (0)
  7. scripts/tests/test_translation_fixer/test_code_blocks/data/translated_doc_lines_number_gt.md

    ```
    
    And even more text
    
    ```json
    {
        // This is a sample JSON code block
        "greeting": "Hello, world!" // Greeting
    }
    ```
    
    Диаграма Mermaid
    
    ```mermaid
    flowchart LR
        stone(philosophers-stone) -->|requires| harry-1[harry v1]
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 10 21:48:08 GMT 2026
    - 896 bytes
    - Click Count (0)
  8. scripts/tests/test_translation_fixer/test_code_blocks/data/translated_doc_lines_number_lt.md

    ```
    
    And even more text
    
    ```json
    {
        // This is a sample JSON code block
        "greeting": "Hello, world!" // Greeting
    }
    ```
    
    Диаграма Mermaid
    
    ```mermaid
    flowchart LR
        stone(philosophers-stone) -->|requires| harry-1[harry v1]
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 10 21:48:08 GMT 2026
    - 892 bytes
    - Click Count (0)
  9. scripts/tests/test_translation_fixer/test_code_blocks/data/translated_doc_mermaid_not_translated.md

    ```
    
    And even more text
    
    ```json
    {
        // This is a sample JSON code block
        "greeting": "Hello, world!" // Greeting
    }
    ```
    
    Диаграма Mermaid
    
    ```mermaid
    flowchart LR
        stone(philosophers-stone) -->|requires| harry-1[harry v1]
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 10 21:48:08 GMT 2026
    - 883 bytes
    - Click Count (0)
  10. scripts/tests/test_translation_fixer/test_code_blocks/test_code_blocks_mermaid.py

            f"{data_path}/translated_doc_mermaid_translated.md"
        ).read_text("utf-8")
    
        assert fixed_content == expected_content  # Translated doc remains unchanged
        assert (
            "Skipping mermaid code block replacement (lines 41-44). This should be checked manually."
        ) in result.output
    
    
    @pytest.mark.parametrize(
        "copy_test_files",
        [
            (
                f"{data_path}/en_doc.md",
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 10 22:43:44 GMT 2026
    - 1.8K bytes
    - Click Count (0)
Back to Top