@@ -61,15 +61,14 @@ public interface WebApp {
6161 * This method should only be used inside the {@link Consumer} that got registered <i>(before bluemap loaded,
6262 * pre server-start!)</i> to {@link BlueMapAPI#onEnable(Consumer)}.<br>
6363 * Invoking this method at any other time is not supported.<br>
64- * Style-registrations are <b>not persistent</b>, register your style each time bluemap enables!
65- * <p >
64+ * Style-registrations are <b>not persistent</b>, register your style each time bluemap enables!<br>
65+ * <br >
6666 * Example:
6767 * <pre>
6868 * BlueMapAPI.onEnable(api -> {
6969 * api.getWebApp().registerStyle("js/my-custom-style.css");
7070 * });
7171 * </pre>
72- * </p>
7372 * @param url The (relative) URL that links to the style.css file. The {@link #getWebRoot()}-method can be used to
7473 * create the custom file in the correct location and make it available to the web-app.
7574 */
@@ -80,15 +79,14 @@ public interface WebApp {
8079 * This method should only be used inside the {@link Consumer} that got registered <i>(before bluemap loaded,
8180 * pre server-start!)</i> to {@link BlueMapAPI#onEnable(Consumer)}.<br>
8281 * Invoking this method at any other time is not supported.<br>
83- * Script-registrations are <b>not persistent</b>, register your script each time bluemap enables!
84- * <p >
82+ * Script-registrations are <b>not persistent</b>, register your script each time bluemap enables!<br>
83+ * <br >
8584 * Example:
8685 * <pre>
8786 * BlueMapAPI.onEnable(api -> {
8887 * api.getWebApp().registerScript("js/my-custom-script.js");
8988 * });
9089 * </pre>
91- * </p>
9290 * @param url The (relative) URL that links to the script.js file. The {@link #getWebRoot()}-method can be used to
9391 * create the custom file in the correct location and make it available to the web-app.
9492 */
0 commit comments