Search Options

Display Count
Sort
Preferred Language
Advanced Search

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

The search processing time has exceeded the limit. The displayed results may be partial.

  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. 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)
  4. 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)
  5. build-logic/documentation/src/main/groovy/gradlebuild/docs/RenderMarkdown.java

    import java.io.OutputStreamWriter;
    import java.nio.charset.Charset;
    import java.util.Arrays;
    
    /**
     * Generates release notes file from markdown to HTML
     */
    @CacheableTask
    public abstract class RenderMarkdown extends DefaultTask {
        /**
         * The source markdown file.
         */
        @PathSensitive(PathSensitivity.NONE)
        @InputFile
        public abstract RegularFileProperty getMarkdownFile();
    
        /**
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue May 27 09:07:14 GMT 2025
    - 3.3K bytes
    - Click Count (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to Top