Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for li (4.16 sec)

  1. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/RichReportScrapper.kt

            val entry = tr.select("td")[1]
            ReportMessage(
                entry.select("span")
                    .text().substringBefore(" If you did this intentionally"),
                entry.select("ul li")
                    .map { it.text() }
    
            )
        }
    
    
    internal
    data class ReportMessage(
        val message: String,
        val details: List<String>
    )
    
    
    internal
    data class RichReport(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 21 16:02:23 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. JavadocStyleGuide.md

    Attempt to limit your usage of HTML to: `"a", "h1", "h2", "h3", "h4", "em", "li", "ol", "p", "ul"`.
    
    Some HTML element types allow authors to omit end tags: `<p>` and `<li>`.
    
    ### 1.1.3 Paragraphs
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top