aboutsummaryrefslogtreecommitdiff
path: root/website/templates/contributing.html
diff options
context:
space:
mode:
authorRoel Spilker <r.spilker@gmail.com>2017-10-02 23:36:10 +0200
committerRoel Spilker <r.spilker@gmail.com>2017-10-02 23:36:10 +0200
commit4ed3a062c08e39d21b23d88f3d2a4934bac390d7 (patch)
tree632866701791f413eeb4c2f11a641507639921fa /website/templates/contributing.html
parent214cff5dd2e9d04b780f3586356c43f7242c06c8 (diff)
downloadlombok-4ed3a062c08e39d21b23d88f3d2a4934bac390d7.tar.gz
lombok-4ed3a062c08e39d21b23d88f3d2a4934bac390d7.tar.bz2
lombok-4ed3a062c08e39d21b23d88f3d2a4934bac390d7.zip
add ids to h1/h2/h3 for linking directly to them
Diffstat (limited to 'website/templates/contributing.html')
-rw-r--r--website/templates/contributing.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/website/templates/contributing.html b/website/templates/contributing.html
index 574e3aa8..dde6e3ff 100644
--- a/website/templates/contributing.html
+++ b/website/templates/contributing.html
@@ -3,7 +3,7 @@
<@main.scaffold>
<div class="page-header top5">
<div class="row text-center">
- <h1>How to work on Project Lombok yourself</h1>
+ <@main.h1 title="How to work on Project Lombok yourself" />
</div><div class="row">
Project Lombok is being developed via the <a href="https://github.com/rzwitserloot/lombok">lombok git repository on github</a>.
</div><div class="row">
@@ -13,13 +13,13 @@
To produce a lombok jar, run <code>ant dist</code>; in general run <code>ant -p</code>; there's lots of stuff there, including downloading various versions of java runtimes to run the test suite against, and building this website.
</p>
</div><div class="row text-center">
- <h2>Adding your own handlers and annotations to Lombok</h2>
+ <@main.h2 title="Adding your own handlers and annotations to Lombok" />
</div><div class="row">
<p>
If you want to extend lombok, we advise that you fork lombok and add handlers directly into the same place and package that lombok's handlers are in (<code>lombok.javac.handlers</code> and <code>lombok.eclipse.handlers</code>) – lombok does some fancy footwork to ensure various modular class loading systems don't interface with finding the lombok classes, but that system is not (currently) easily expanded to include separate jars.
</p>
</div><div class="row text-center">
- <h2>Contributing to Project Lombok</h2>
+ <@main.h2 title="Contributing to Project Lombok" />
</div><div class="row">
<p>
To create new features and add them to project lombok itself, send us pull requests via github. However, before you start, discuss the feature or fix you'd like to contribute, preferably via the <a href="https://groups.google.com/forum/#!forum/project-lombok">Project Lombok Forum</a>. If you're going to add a new feature, make sure to post 2 snippets (one with the annotation, the other with what that would generate), similar to how the feature pages list 'with lombok' and 'without lombok' variants.