Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 117 for markdown (0.09 seconds)

  1. .github/workflows/check-markdown-links.yml

    name: "Check markdown links"
    
    on:
      push:
        branches:
          - master
      pull_request:
      workflow_dispatch:
    
    permissions: {}
    
    jobs:
      check-links:
        permissions:
          contents: read
        runs-on: ubuntu-latest
        steps:
          - name: Checkout
            uses: actions/checkout@v6
    
          - name: Check links
            uses: lycheeverse/lychee-action@v2.8.0
            with:
              # excluded:
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Feb 25 22:06:44 GMT 2026
    - 920 bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/helper/MarkdownRenderer.java

            }
        }
    
        /**
         * Renders markdown text to sanitized HTML.
         *
         * @param markdown the markdown text to render
         * @return sanitized HTML string
         */
        public String render(final String markdown) {
            if (markdown == null || markdown.isEmpty()) {
                return "";
            }
    
            try {
                // Parse markdown to AST
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jan 12 10:32:40 GMT 2026
    - 5.3K bytes
    - Click Count (0)
  3. scripts/mkdocs_hooks.py

                if page.file.src_path.startswith(excluded_section):
                    return markdown
            missing_translation_content = get_missing_translation_content(config.docs_dir)
            header = ""
            body = markdown
            if markdown.startswith("#"):
                header, _, body = markdown.partition("\n\n")
            return f"{header}\n\n{missing_translation_content}\n\n{body}"
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 6.6K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/helper/MarkdownRendererTest.java

        public void test_render_paragraphWithLineBreak() {
            String markdown = "Line 1  \nLine 2";
            String result = markdownRenderer.render(markdown);
            // Two spaces at end of line creates a line break
            assertTrue(result.contains("<br"));
        }
    
        @Test
        public void test_render_specialHtmlEntities() {
            String markdown = "Less than < and greater than > and ampersand &";
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 11.1K bytes
    - Click Count (0)
  5. scripts/tests/test_translation_fixer/test_markdown_links/test_mkd_links_number_mismatch.py

            "utf-8"
        )
    
        assert fixed_content == expected_content  # Translated doc remains unchanged
        assert "Error processing docs/lang/docs/doc.md" in result.output
        assert (
            "Number of markdown links does not match the number "
            "in the original document (7 vs 6)"
        ) in result.output
    
    
    @pytest.mark.parametrize(
        "copy_test_files",
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 10 22:43:44 GMT 2026
    - 1.9K bytes
    - Click Count (0)
  6. 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)
  7. docs/en/docs/tutorial/metadata.md

    | `title` | `str` | The title of the API. |
    | `summary` | `str` | A short summary of the API. <small>Available since OpenAPI 3.1.0, FastAPI 0.99.0.</small> |
    | `description` | `str` | A short description of the API. It can use Markdown. |
    | `version` | `string` | The version of the API. This is the version of your own application, not of OpenAPI. For example `2.5.0`. |
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 5.8K bytes
    - Click Count (0)
  8. 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)
  9. 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)
  10. 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)
Back to Top