Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 153 for markdown (0.19 seconds)

  1. .github/ISSUE_TEMPLATE/BUG.yml

    # https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema
    
    name: Bug Report
    description: File a bug report
    labels: ["bug"]
    
    body:
      - type: markdown
        attributes:
          value: |
            Thanks for taking the time to fill out this bug report.     
    
            Simple fixes in single PRs do not require issues. 
      
            **Do you use the latest project version?**
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Jun 06 14:30:05 GMT 2025
    - 1.4K bytes
    - Click Count (0)
  2. 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)
  3. .github/ISSUE_TEMPLATE/tflite-other.md

    Request - Documentation Bug - Others validations: required: true - type:
    markdown attributes: value: | Please make sure that this is a bug. As per our
    [GitHub Policy](https://github.com/tensorflow/tensorflow/blob/master/ISSUES.md),we
    only address code/doc bugs, performance issues, feature requests and
    build/installation issues on GitHub.
    
    -   type: markdown
        attributes:
          value: |
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Thu Dec 29 22:28:29 GMT 2022
    - 3.4K bytes
    - Click Count (0)
  4. .github/PULL_REQUEST_TEMPLATE

        "This change modifies Go to ___________"
      + Lowercase verb after the colon
      + No trailing period
      + Keep the title as short as possible. ideally under 76 characters or shorter
    + No Markdown
    + The first PR comment (this one) is wrapped at 76 characters, unless it's
      really needed (ASCII art, table, or long link)
    + If there is a corresponding issue, add either `Fixes #1234` or `Updates #1234`
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Wed Feb 21 02:07:46 GMT 2018
    - 1.2K bytes
    - Click Count (0)
  5. architecture/standards/0001-use-architectural-decision-records.md

    * They are not synced with the code to reflect the eventual solution that is committed
    * Google Docs is not a "code-oriented" tool, like Markdown can be
    * Review in Google Docs is not as simple as a PR code review in GitHub
    
    ## Decision
    
    The *Build Tool Team* has decided to use Architectural Decision Records (aka ADR) to track decisions we want to follow.
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 2.9K bytes
    - Click Count (0)
  6. .github/ISSUE_TEMPLATE/04-vuln.yml

    name: Go vulnerability management - bugs and feature requests
    description: Issues or feature requests about Go vulnerability management
    title: "x/vuln: issue title"
    labels: ["vulncheck or vulndb"]
    body:
      - type: markdown
        attributes:
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Jan 04 23:31:17 GMT 2024
    - 1.9K bytes
    - Click Count (0)
  7. docs/en/docs/tutorial/path-operation-configuration.md

    You can write [Markdown](https://en.wikipedia.org/wiki/Markdown) in the docstring, it will be interpreted and displayed correctly (taking into account docstring indentation).
    
    {* ../../docs_src/path_operation_configuration/tutorial004_py310.py hl[17:25] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 4K bytes
    - Click Count (0)
  8. .github/ISSUE_TEMPLATE/03-gopls.yml

    name: Gopls bugs or feature requests
    description: Issues or feature requests for the Go language server (gopls)
    title: "x/tools/gopls: issue title"
    labels: ["gopls", "Tools"]
    body:
      - type: markdown
        attributes:
          value: "Please answer these questions before submitting your issue. Thanks!"
      - type: textarea
        id: gopls-version
        attributes:
          label: "gopls version"
          description: "Output of `gopls -v version` on the command line"
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Fri May 24 17:09:04 GMT 2024
    - 1.8K bytes
    - Click Count (0)
  9. 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)
  10. scripts/tests/test_translation_fixer/test_complex_doc/test_compex_doc.py

        expected_content = (data_path / "translated_doc_expected.md").read_text("utf-8")
        assert fixed_content == expected_content
    
        assert "Fixing multiline code blocks in" in result.output
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 10 22:43:44 GMT 2026
    - 902 bytes
    - Click Count (0)
Back to Top