keycloak/docs/documentation/server_development/topics/preface.adoc

28 lines
720 B
Text
Raw Permalink Normal View History

== Preface
2016-04-18 17:02:18 -04:00
=== Container Images
The official {project_name} container image uses OpenJDK {jdk_version_recommended} as the Java runtime environment.
Consider this when writing custom extensions.
=== Example Listings
2016-06-07 23:48:48 -04:00
In some of the example listings, what is meant to be displayed on one line does not fit inside the available page width. These lines have been broken up. A '\' at the end of a line means that a break has been introduced to fit in the page, with the following lines indented.
So:
2016-04-18 17:02:18 -04:00
[source]
----
Let's pretend to have an extremely \
long line that \
does not fit
2016-04-18 17:02:18 -04:00
This one is short
----
Is really:
2016-04-18 17:02:18 -04:00
[source]
----
Let's pretend to have an extremely long line that does not fit
This one is short
----
2016-04-18 17:02:18 -04:00