Skip to content
This repository was archived by the owner on May 6, 2018. It is now read-only.

Commit 3ca8801

Browse files
committed
Add ID's to the title tags so they can be used in anchors
1 parent da2438f commit 3ca8801

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

index.html

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116
<img src="images/logo.png" alt="Logo" />
117117
</div>
118118

119-
<h1 class="title center">PHP Integrator</h1>
119+
<h1 id="title" class="title center">PHP Integrator</h1>
120120

121121
<div class="center">
122122
<em>PHP code analysis and utilities for the Atom editor</em>
@@ -138,7 +138,7 @@ <h1 class="title center">PHP Integrator</h1>
138138
</div>
139139

140140
<div class="left">
141-
<h3>Autocompletion</h3>
141+
<h3 id="autocompletion">Autocompletion</h3>
142142
<p>
143143
One of the most useful features in a programmer's toolbox is autocompletion, which suggests:
144144
</p>
@@ -162,7 +162,7 @@ <h3>Autocompletion</h3>
162162
</div>
163163

164164
<div class="right">
165-
<h3>Code navigation</h3>
165+
<h3 id="code-navigation">Code navigation</h3>
166166
<p>
167167
Code navigation allows you to effortlessly travel through your codebase by clicking the names
168168
of method calls, classes, interfaces, and other structural elements.
@@ -184,7 +184,7 @@ <h3>Code navigation</h3>
184184
</div>
185185

186186
<div class="left">
187-
<h3>Annotations</h3>
187+
<h3 id="annotations">Annotations</h3>
188188
<p>
189189
Annotations provide you with relevant information about your code, such as that a parent property is
190190
being overridden or an interface method is being implemented.
@@ -206,7 +206,7 @@ <h3>Annotations</h3>
206206
</div>
207207

208208
<div class="right">
209-
<h3>Tooltips</h3>
209+
<h3 id="tooltips">Tooltips</h3>
210210
<p>
211211
Tooltips display documentation for structural elements. Think extended docblock descriptions,
212212
method parameter descriptions, return type descriptions and exceptions thrown.
@@ -224,7 +224,7 @@ <h3>Tooltips</h3>
224224
</div>
225225

226226
<div class="left">
227-
<h3>Refactoring</h3>
227+
<h3 id="refactoring">Refactoring</h3>
228228
<p>
229229
Refactoring is the component that has the most potential. Features currently include:
230230
</p>
@@ -248,7 +248,7 @@ <h3>Refactoring</h3>
248248
</div>
249249

250250
<div class="right">
251-
<h3>Call Tips</h3>
251+
<h3 id="call-tips">Call Tips</h3>
252252
<p>
253253
Call tips are much like tooltips, but differ only in that they display items directly related to
254254
function or method calls, such as their expected parameters with their types and default values.
@@ -266,7 +266,7 @@ <h3>Call Tips</h3>
266266
</div>
267267

268268
<div class="left">
269-
<h3>Linting</h3>
269+
<h3 id="linting">Linting</h3>
270270
<p>
271271
The list wouldn't be complete without a way to highlight errors before stumbling upon them whilst
272272
running the code. Finding nonexistent class names, docblock issues and missing global functions are
@@ -281,7 +281,7 @@ <h3>Linting</h3>
281281

282282
<div class="row">&nbsp;</div>
283283

284-
<h2>Awesome! What do I need?</h2>
284+
<h2 id="what-do-i-need">Awesome! What do I need?</h2>
285285
<p>
286286
To run, you will need at least:
287287

@@ -297,7 +297,7 @@ <h2>Awesome! What do I need?</h2>
297297
<li><em>Proper docblocks and type hinting</em> - See <a href="https://github.com/Gert-dev/php-integrator-base/wiki/Proper-Documentation-And-Type-Hinting">our wiki</a> for more information.</li>
298298
</ul>
299299

300-
<h2>Wait, now I'm confused, what is it really?</h2>
300+
<h2 id="what-is-it-really">Wait, now I'm confused, what is it really?</h2>
301301
<p>
302302
At the moment, PHP Integrator itself is an Atom package that consists of a CoffeeScript side (that plugs into
303303
Atom) and a PHP side. The PHP side is directly part of the Atom package to make the process of installing
@@ -311,14 +311,14 @@ <h2>Wait, now I'm confused, what is it really?</h2>
311311
analysis is done by the PHP side.
312312
</p>
313313

314-
<h2>Is it really exclusive to Atom?</h2>
314+
<h2 id="is-it-really-exclusive-to-atom">Is it really exclusive to Atom?</h2>
315315
<p>
316316
The packages and CoffeeScript parts are dependent on Atom, but the PHP side, which does the heavy lifting,
317317
is not dependent on Atom at all. One can just extract out the PHP code and build a plugin or extension
318318
for another editor around it (in the future it might even be extracted into a separate repository).
319319
</p>
320320

321-
<h2>Where is the code?</h2>
321+
<h2 id="where-is-the-code">Where is the code?</h2>
322322
<p><a href="https://github.com/Gert-dev/php-integrator-base">Right here</a>, on GitHub.</p>
323323
</div>
324324

0 commit comments

Comments
 (0)