Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for H1 (0.14 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

            addCssToHead(document);
            addJavascriptToHead(document);
    
            wrapH2InSectionTopic(document);
            addAnchorsForHeadings(document);
            document.body().prepend("<h1>Gradle Release Notes</h1>");
            addTOC(document);
            wrapContentInContainer(document);
    
            String rewritten = document.body().html();
            // Turn Gradle Jira issue numbers into issue links
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Jan 26 13:00:32 GMT 2023
    - 8.1K bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/HtmlToXmlJavadocLexer.java

            this.lexer = lexer;
            blockElements.add("p");
            blockElements.add("pre");
            blockElements.add("ul");
            blockElements.add("ol");
            blockElements.add("li");
            blockElements.add("h1");
            blockElements.add("h2");
            blockElements.add("h3");
            blockElements.add("h4");
            blockElements.add("h5");
            blockElements.add("h6");
            blockElements.add("table");
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 5.8K bytes
    - Viewed (0)
  3. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/HtmlToXmlJavadocLexerTest.groovy

            where:
            source                                   | transformed
            "<h1>text</h1>"                          | "<h1>text</h1>"
            "<h2>text</h2>"                          | "<h2>text</h2>"
            "<p>text</p>"                            | "<p>text</p>"
            "<h1><code>text</code></h1>"             | "<h1><code>text</code></h1>"
            "<table><th>text</th><td>text</td></ul>" | "<table><th>text</th><td>text</td></table>"
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 6.5K bytes
    - Viewed (0)
  4. build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportAggregationWorkAction.kt

           <link xmlns:xslthl="http://xslthl.sf.net" type="text/css" rel="stylesheet" href="https://docs.gradle.org/current/userguide/base.css">
    
        </head>
        <body>
           <h1>Incubating APIs</h1>
           <h2>Index</h2>
           <ul>
        """
                )
    
                data.toSortedMap().forEach { (category, _) ->
                    writer.println("<li><a href=\"#$category\">$category</a><br></li>")
    HTML
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Jan 18 06:55:55 GMT 2021
    - 3.4K bytes
    - Viewed (0)
  5. build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportWorkAction.kt

           <link xmlns:xslthl="http://xslthl.sf.net" type="text/css" rel="stylesheet" href="https://docs.gradle.org/current/userguide/base.css">
    
        </head>
        <body>
           <h1>Incubating APIs for  $title</h1>
        """
                )
                val versions = versionsDates()
                versionToIncubating.toSortedMap().forEach { (version, incubatingDescriptions) ->
    HTML
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sun Jun 25 02:53:14 GMT 2023
    - 12.7K bytes
    - Viewed (0)
Back to top