aboutsummaryrefslogtreecommitdiff
path: root/website/templates/features/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'website/templates/features/index.html')
-rw-r--r--website/templates/features/index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/website/templates/features/index.html b/website/templates/features/index.html
index da3db634..a09c4b72 100644
--- a/website/templates/features/index.html
+++ b/website/templates/features/index.html
@@ -3,7 +3,7 @@
<@main.scaffold>
<div class="page-header top5">
<div class="row text-center">
- <h1>Lombok features.</h1>
+ <@main.h1 title="Lombok features." />
</div>
<div class="row">
<@main.feature title="val" href="val">
@@ -69,7 +69,7 @@
</div>
<div class="row">
- <h1>Configuration system</h1>
+ <@main.h1 title="Configuration system" />
<div class="text-center">
Lombok, made to order: <a href="configuration">Configure lombok features</a> in one place for your entire project or even your workspace.
@@ -77,7 +77,7 @@
</div>
<div class="row">
- <h1 class="text-center">Running delombok</h1>
+ <@main.h1 title="Running delombok" />
<div>
Delombok copies your source files to another directory, replacing all lombok annotations with their desugared form. So, it'll turn <code>@Getter</code> back into the actual getter. It then removes the annotation. This is useful for all sorts of reasons; you can check out what's happening under the hood, if the unthinkable happens and you want to stop using lombok, you can easily remove all traces of it in your source, and you can use delombok to preprocess your source files for source-level tools such as javadoc and GWT. More information about how to run delombok, including instructions for build tools can be found at the <a href="delombok">delombok page</a>.