io.quarkus.qute.runtime.QuteConfig.jdp Maven / Gradle / Ivy
#
#Wed Nov 16 10:01:39 CET 2022
io.quarkus.qute.runtime.QuteConfig.contentTypes=The additional map of suffixes to content types. This map is used when working with template variants. By default, the\n{@link java.net.URLConnection\#getFileNameMap()} is used to determine the content type of a template file.
io.quarkus.qute.runtime.QuteConfig.suffixes=The list of suffixes used when attempting to locate a template file.\n\nBy default, `engine.getTemplate("foo")` would result in several lookups\: `foo`, `foo.html`, `foo.txt`, etc.\n\n@asciidoclet
io.quarkus.qute.runtime.QuteConfig.templatePathExclude=This regular expression is used to exclude template files from the {@code templates} directory. Excluded templates are\nneither parsed nor validated during build and are not available at runtime.\n\nThe matched input is the file path relative from the {@code templates} directory and the\n{@code /} is used as a path separator.\n
\nBy default, the hidden files are excluded. The name of a hidden file starts with a dot.
io.quarkus.qute.runtime.QuteConfig.escapeContentTypes=The list of content types for which the {@code '}, {@code "}, {@code <}, {@code >} and {@code &} characters are escaped\nif a template variant is set.
io.quarkus.qute.runtime.QuteConfig.typeCheckExcludes=The list of exclude rules used to intentionally ignore some parts of an expression when performing type-safe validation.\n
\nAn element value must have at least two parts separated by dot. The last part is used to match the property/method name.\nThe prepended parts are used to match the class name. The value {@code *} can be used to match any name.\n
\nExamples\:\n
\n- {@code org.acme.Foo.name} - exclude the property/method {@code name} on the {@code org.acme.Foo} class
\n- {@code org.acme.Foo.*} - exclude any property/method on the {@code org.acme.Foo} class
\n- {@code *.age} - exclude the property/method {@code age} on any class
\n
io.quarkus.qute.runtime.QuteConfig.defaultCharset=The default charset of the templates files.
io.quarkus.qute.runtime.QuteConfig.iterationMetadataPrefix=The prefix is used to access the iteration metadata inside a loop section.\n\nA valid prefix consists of alphanumeric characters and underscores.\nThree special constants can be used\:\n
\n- {@code
} - the alias of an iterated element suffixed with an underscore is used, e.g. {@code item_hasNext}\nand {@code it_count} \n- {@code
} - the alias of an iterated element suffixed with a question mark is used, e.g. {@code item?hasNext}\nand {@code it?count} \n- {@code
} - no prefix is used, e.g. {@code hasNext} and {@code count} \n
\nBy default, the {@code } constant is set.