Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 92 for markdown (0.06 seconds)

  1. scripts/general-llm-prompt.md

    ### Your task
    
    Translate an English original content to a target language.
    
    The original content is written in Markdown, write the translation in Markdown as well.
    
    The original content will be surrounded by triple percentage signs (%%%). Do not include the triple percentage signs in the translation.
    
    ### Technical terms in English
    
    For technical terms in English that don't have a common translation term, use the original term in English.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Mar 18 10:55:36 GMT 2026
    - 14.6K bytes
    - Click Count (0)
  2. docs/zh-hant/docs/tutorial/metadata.md

    * `description`:一個 `str`,為該標籤的簡短描述。可使用 Markdown,並會顯示在文件介面中。
    * `externalDocs`:一個 `dict`,描述外部文件,包含:
        * `description`:一個 `str`,外部文件的簡短描述。
        * `url`(**必填**):一個 `str`,外部文件的 URL。
    
    ### 建立標籤的中繼資料 { #create-metadata-for-tags }
    
    我們用 `users` 與 `items` 兩個標籤來示範。
    
    先為你的標籤建立中繼資料,然後將它傳給 `openapi_tags` 參數:
    
    {* ../../docs_src/metadata/tutorial004_py310.py hl[3:16,18] *}
    
    注意你可以在描述中使用 Markdown,例如「login」會以粗體(**login**)顯示,而「fancy」會以斜體(_fancy_)顯示。
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 5.6K bytes
    - Click Count (0)
  3. docs/recipes.md

            }
          }
        ```
    
    ### Posting a String ([.kt][PostStringKotlin], [.java][PostStringJava])
    
    Use an HTTP POST to send a request body to a service. This example posts a markdown document to a web service that renders markdown as HTML. Because the entire request body is in memory simultaneously, avoid posting large (greater than 1 MiB) documents using this API.
    
    === ":material-language-kotlin: Kotlin"
        ```kotlin
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Mar 15 09:01:42 GMT 2026
    - 47.8K bytes
    - Click Count (0)
  4. scripts/doc_parsing_utils.py

            modified_text[line_no] = f"{hashes} {title}{permalink}"
    
        return modified_text
    
    
    # Markdown links
    # --------------------------------------------------------------------------------------
    
    
    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:
    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)
  5. docs/zh/docs/tutorial/metadata.md

    - `description`:一个 `str`,该标签的简短描述。可以使用 Markdown,并会显示在文档 UI 中。
    - `externalDocs`:一个 `dict`,描述外部文档,包含:
        - `description`:一个 `str`,该外部文档的简短描述。
        - `url`(必填):一个 `str`,该外部文档的 URL。
    
    ### 创建标签元数据 { #create-metadata-for-tags }
    
    让我们在带有标签的示例中为 `users` 和 `items` 试一下。
    
    创建标签元数据并把它传递给 `openapi_tags` 参数:
    
    {* ../../docs_src/metadata/tutorial004_py310.py hl[3:16,18] *}
    
    注意你可以在描述内使用 Markdown,例如「login」会显示为粗体(**login**)以及「fancy」会显示为斜体(_fancy_)。
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 5.6K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/chat/ChatClient.java

                }
                sb.append(c);
            }
            return sb.toString();
        }
    
        /**
         * Renders markdown text to sanitized HTML.
         *
         * @param markdown the markdown text
         * @return sanitized HTML
         */
        protected String renderMarkdownToHtml(final String markdown) {
            if (markdownRenderer == null || !markdownRenderer.isInitialized()) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 56.6K bytes
    - Click Count (0)
  7. docs/ja/docs/tutorial/metadata.md

    | パラメータ | 型 | 説明 |
    |------------|------|-------------|
    | `title` | `str` | APIのタイトルです。 |
    | `summary` | `str` | APIの短い要約です。 <small>OpenAPI 3.1.0、FastAPI 0.99.0 以降で利用できます。</small> |
    | `description` | `str` | APIの短い説明です。Markdownを使用できます。 |
    | `version` | `string` | APIのバージョンです。これはOpenAPIのバージョンではなく、あなた自身のアプリケーションのバージョンです。たとえば `2.5.0` です。 |
    | `terms_of_service` | `str` | APIの利用規約へのURLです。指定する場合、URLである必要があります。 |
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 6.9K bytes
    - Click Count (0)
  8. docs/ja/docs/tutorial/path-operation-configuration.md

    説明文は長くて複数行におよぶ傾向があるので、関数<dfn title="関数内の最初の式(どの変数にも代入されない)として記述される、ドキュメント用の複数行の文字列">docstring</dfn>内に*path operation*の説明文を宣言できます。すると、**FastAPI** は説明文を読み込んでくれます。
    
    docstringに[Markdown](https://en.wikipedia.org/wiki/Markdown)を記述すれば、正しく解釈されて表示されます。(docstringのインデントを考慮して)
    
    {* ../../docs_src/path_operation_configuration/tutorial004_py310.py hl[17:25] *}
    
    これは対話的ドキュメントで使用されます:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  9. docs/zh-hant/docs/tutorial/path-operation-configuration.md

    ## 從 docstring 取得描述 { #description-from-docstring }
    
    由於描述常常較長、跨越多行,你可以在函式的 <dfn title="用於文件的多行字串,作為函式內的第一個運算式(不賦值給任何變數)">文件字串(docstring)</dfn> 中宣告「路徑操作」的描述,**FastAPI** 會從那裡讀取。
    
    你可以在 docstring 中書寫 [Markdown](https://en.wikipedia.org/wiki/Markdown),它會被正確解析並顯示(會考慮 docstring 的縮排)。
    
    {* ../../docs_src/path_operation_configuration/tutorial004_py310.py hl[17:25] *}
    
    這會用於互動式文件:
    
    <img src="/img/tutorial/path-operation-configuration/image02.png">
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 3.8K bytes
    - Click Count (0)
  10. build-logic/documentation/src/main/groovy/gradlebuild/docs/FindBrokenInternalLinks.java

            fw.println("# The checker does not handle implicit section names, so they must be explicit and declared as: [[section-name]]");
            fw.println("#");
            fw.println("# The checker also rejects Markdown-style links, such as [text](https://example.com/something) as they do not render properly");
    
        }
    
        private void gatherDeadLinksInFileReleaseNotes(Map<File, List<Error>> errors) {
            int lineNumber = 0;
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 12 23:22:57 GMT 2026
    - 12.8K bytes
    - Click Count (0)
Back to Top