Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for italics (0.07 sec)

  1. docs/en/docs/tutorial/metadata.md

    {* ../../docs_src/metadata/tutorial004_py39.py hl[3:16,18] *}
    
    Notice that you can use Markdown inside of the descriptions, for example "login" will be shown in bold (**login**) and "fancy" will be shown in italics (_fancy_).
    
    /// tip
    
    You don't have to add metadata for all the tags that you use.
    
    ///
    
    ### Use your tags { #use-your-tags }
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  2. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    1D44E         ; mapped                 ; 0061          # 3.1  MATHEMATICAL ITALIC SMALL A
    1D44F         ; mapped                 ; 0062          # 3.1  MATHEMATICAL ITALIC SMALL B
    1D450         ; mapped                 ; 0063          # 3.1  MATHEMATICAL ITALIC SMALL C
    1D451         ; mapped                 ; 0064          # 3.1  MATHEMATICAL ITALIC SMALL D
    1D452         ; mapped                 ; 0065          # 3.1  MATHEMATICAL ITALIC SMALL E
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  3. fess-crawler/src/test/resources/extractor/markdown/test.md

    # Introduction
    
    This is a sample Markdown document for testing the MarkdownExtractor.
    
    ## Features
    
    The extractor should handle:
    
    - YAML front matter extraction
    - Heading structure
    - **Bold text** and *italic text*
    - Lists and other formatting
    
    ### Code Examples
    
    Here is some inline `code` and a code block:
    
    ```java
    public class Example {
        public static void main(String[] args) {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 03:46:53 UTC 2025
    - 767 bytes
    - Viewed (0)
  4. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/goals/Init.java

                        .build());
                return BAD_OPERATION;
            }
    
            context.addInHeader(context.style.italic().bold().foreground(Colors.rgbColor("yellow")), "goal: init");
            context.addInHeader("");
    
            ConsolePrompt.UiConfig promptConfig;
            if (OSUtils.IS_WINDOWS) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jun 11 13:14:09 UTC 2025
    - 12K bytes
    - Viewed (0)
  5. docs/en/docs/css/custom.css

    }
    
    /* Override default regular font in Material for MkDocs to include Noto Color Emoji */
    :root {
        --md-text-font: "Roboto", "Noto Color Emoji";
    }
    
    .termynal-comment {
      color: #4a968f;
      font-style: italic;
      display: block;
    }
    
    .termy {
      /* For right to left languages */
      direction: ltr;
    }
    
    .termy [data-termynal] {
      white-space: pre-wrap;
    }
    
    .termy .linenos {
      display: none;
    }
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Nov 28 15:55:15 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  6. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/EncryptInvoker.java

            try {
                context.header = new ArrayList<>();
                context.style = new AttributedStyle();
                context.addInHeader(
                        context.style.italic().bold().foreground(Colors.rgbColor("green")),
                        "Maven Encryption " + CLIReportingUtils.showVersionMinimal());
                context.addInHeader("Tool for secure password management on workstations.");
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jun 11 13:14:09 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  7. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/UpgradeInvoker.java

            try {
                context.header = new ArrayList<>();
                context.style = new AttributedStyle();
                context.addInHeader(
                        context.style.italic().bold().foreground(Colors.rgbColor("green")),
                        "Maven Upgrade " + CLIReportingUtils.showVersionMinimal());
                context.addInHeader("Tool for upgrading Maven projects and dependencies.");
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jun 11 13:14:09 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  8. impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/ProjectDependencyGraphStub.java

                }
            }
    
            void addIfUpstreamOf(MavenProject mavenProject, List<MavenProject> result) {
                if (dependant == mavenProject) {
                    result.add(dependency); // All projects are the statics from this class
                }
            }
        }
    
        private List<Dependency> getDependencies() {
            List<Dependency> dependencies = new ArrayList<>();
            dependencies.add(new Dependency(B, A));
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  9. docs/pt/docs/tutorial/metadata.md

    {* ../../docs_src/metadata/tutorial004_py39.py hl[3:16,18] *}
    
    Observe que você pode usar Markdown dentro das descrições. Por exemplo, "login" será exibido em negrito (**login**) e "fancy" será exibido em itálico (_fancy_).
    
    /// tip | Dica
    
    Você não precisa adicionar metadados para todas as tags que você usa.
    
    ///
    
    ### Use suas tags { #use-your-tags }
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  10. ADDING_NEW_LANGUAGE.md

    2. **Search/Analysis Support** (40+ languages): Language-specific text analysis for search indexing
    
    Currently supported UI languages: German, English, Spanish, French, Italian, Japanese, Korean, Dutch, Polish, Brazilian Portuguese, Russian, Simplified Chinese, and Traditional Chinese.
    
    ## File Structure
    
    Language resource files are located in:
    ```
    src/main/resources/
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 06 11:36:30 UTC 2025
    - 10.4K bytes
    - Viewed (0)
Back to top