- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 154 for mrkdwn (0.04 seconds)
-
samples/guide/src/main/java/okhttp3/recipes/kt/PostStreaming.kt
Request( url = "https://api.github.com/markdown/raw".toHttpUrl(), body = requestBody, ) client.newCall(request).execute().use { response -> if (!response.isSuccessful) throw IOException("Unexpected code $response") println(response.body.string()) } } companion object { val MEDIA_TYPE_MARKDOWN = "text/x-markdown; charset=utf-8".toMediaType() } } fun main() {
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Mon Jan 08 01:13:22 GMT 2024 - 1.9K bytes - Click Count (0) -
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) -
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) -
docs/zh/docs/tutorial/path-operation-configuration.md
## 从 docstring 获取描述 { #description-from-docstring } 描述内容比较长且占用多行时,可以在函数的 <dfn title="作为函数内部的第一个表达式(不赋给任何变量)的多行字符串,用于文档用途">docstring</dfn> 中声明*路径操作*的描述,**FastAPI** 会从中读取。 文档字符串支持 [Markdown](https://en.wikipedia.org/wiki/Markdown),能正确解析和显示 Markdown 的内容,但要注意文档字符串的缩进。 {* ../../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:06:37 GMT 2026 - 3.7K bytes - Click Count (0) -
scripts/tests/test_translation_fixer/test_complex_doc/data/translated_doc.md
{* ../../docs_src/dependencies/tutorial013_an_py310.py ln[1:30] hl[1:10] *} # Ссылки { #links } ## Ссылки в стиле Markdown { #markdown-style-links } Это [Markdown-ссылка](https://example.com) на внешний сайт. Это ссылка с атрибутами: [**FastAPI** генераторы проектов](project-generation.md){.internal-link target=_blank}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Tue Feb 17 08:08:04 GMT 2026 - 11.2K bytes - Click Count (0) -
docs/fr/docs/tutorial/metadata.md
| `title` | `str` | Le titre de l’API. | | `summary` | `str` | Un court résumé de l’API. <small>Disponible depuis OpenAPI 3.1.0, FastAPI 0.99.0.</small> | | `description` | `str` | Une brève description de l’API. Elle peut utiliser Markdown. | | `version` | `string` | La version de l’API. C’est la version de votre propre application, pas d’OpenAPI. Par exemple `2.5.0`. |
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 6.6K bytes - Click Count (0) -
docs/uk/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` | URL до умов використання API. Якщо вказано, має бути у форматі URL. |
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 8.8K bytes - Click Count (0) -
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) -
scripts/tests/test_translation_fixer/test_complex_doc/data/en_doc.md
{* ../../docs_src/dependencies/tutorial013_an_py310.py ln[30:38] hl[31:33] *} # Links { #links } ## Markdown-style links { #markdown-style-links } This is a [Markdown link](https://example.com) to an external site. This is a link with attributes: [**FastAPI** Project Generators](project-generation.md){.internal-link target=_blank}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Tue Feb 17 08:08:04 GMT 2026 - 7.6K bytes - Click Count (0) -
samples/guide/src/main/java/okhttp3/recipes/kt/PostString.kt
url = "https://api.github.com/markdown/raw".toHttpUrl(), body = postBody.toRequestBody(MEDIA_TYPE_MARKDOWN), ) client.newCall(request).execute().use { response -> if (!response.isSuccessful) throw IOException("Unexpected code $response") println(response.body.string()) } } companion object { val MEDIA_TYPE_MARKDOWN = "text/x-markdown; charset=utf-8".toMediaType() } }
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Mon Jan 08 01:13:22 GMT 2024 - 1.6K bytes - Click Count (0)