Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Highlight (0.2 sec)

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

                dslRef.getStylesheetDirectory().convention(extension.getSourceRoot().dir("stylesheets"));
                dslRef.getHighlightStylesheet().convention(dslRef.getStylesheetDirectory().file("custom-highlight/custom-xslthl-config.xml"));
    
                dslRef.getStagingRoot().convention(extension.getStagingRoot().dir("dsl"));
    
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 5.7K bytes
    - Viewed (0)
  2. build-logic/documentation/build.gradle.kts

        implementation(project(":build-update-utils"))
    
        implementation("com.github.javaparser:javaparser-core")
        implementation("com.google.guava:guava")
        implementation("com.uwyn:jhighlight") {
            exclude(module = "servlet-api")
        }
        implementation("com.vladsch.flexmark:flexmark-all")
        implementation("commons-lang:commons-lang")
        implementation("org.asciidoctor:asciidoctor-gradle-jvm")
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 1.2K bytes
    - Viewed (0)
  3. build-logic-commons/build-platform/build.gradle.kts

            api("com.google.code.gson:gson:2.8.9")
            api("com.nhaarman:mockito-kotlin:1.6.0")
            api("com.thoughtworks.qdox:qdox:2.0.3")
            api("com.uwyn:jhighlight:1.0")
            api("com.vladsch.flexmark:flexmark-all:0.34.60") {
                because("Higher versions tested are either incompatible (0.62.2) or bring additional unwanted dependencies (0.36.8)")
            }
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Apr 22 05:34:03 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/DslReference.java

        /**
         * The stylesheet directory used by the DSL reference documentation.
         */
        public abstract DirectoryProperty getStylesheetDirectory();
    
        /**
         * The stylesheet used by the DSL reference to highlight code snippets.
         */
        public abstract RegularFileProperty getHighlightStylesheet();
    
        /**
         * Resources to include with the generated documentation.
         */
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 1.9K bytes
    - Viewed (0)
Back to top