Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for backticks (0.03 sec)

  1. scripts/translate.py

    "single backtick"
    
        A single backtick – «`»
    
    "triple backticks"
    
        Three backticks in a row – «```»
    
    "neutral double quote"
    
        The character «"»
        Unicode U+0022 (QUOTATION MARK)
    
    "neutral single quote"
    
        The character «'»
        Unicode U+0027 (APOSTROPHE)
    
    "English double typographic quotes"
    
        The characters «“» and «”»
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 19:05:53 UTC 2025
    - 34.1K bytes
    - Viewed (0)
  2. docs/fr/llm-prompt.md

    2) In the French docs, guillemets are written without extra spaces: use «texte», not « texte ».
    
    3) Do not convert quotes inside code blocks, inline code, paths, URLs, or anything wrapped in backticks.
    
    Examples:
    
        Source (English):
    
            «««
            "Hello world"
            “Hello Universe”
            "He said: 'Hello'"
            "The module is `__main__`"
            »»»
    
        Result (French):
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 10:41:43 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/util/CharUtilTest.java

            assertFalse(CharUtil.isUrlChar('>')); // greater than
            assertFalse(CharUtil.isUrlChar('"')); // double quote
            assertFalse(CharUtil.isUrlChar('\\')); // backslash
            assertFalse(CharUtil.isUrlChar('`')); // backtick
        }
    
        public void test_isUrlChar_controlCharacters() {
            // Test control characters
            assertFalse(CharUtil.isUrlChar('\u0000')); // null
            assertFalse(CharUtil.isUrlChar('\u0001')); // SOH
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 5.6K bytes
    - Viewed (0)
Back to top