Skip to content

Commit

Permalink
Remove "html" suffix from links.
Browse files Browse the repository at this point in the history
This makes the URLs a lot prettier on errorprone.info.
Sadly the local test server gives a 404 without the links.
See barryclark/jekyll-now#13
  • Loading branch information
alexeagle committed Oct 15, 2014
1 parent 3737262 commit 8922f9a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 139 deletions.
6 changes: 3 additions & 3 deletions _layouts/bugpattern.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@

<div class="wrapper">
<header>
<a href="../index.html"><h1>error-prone</h1></a>
<a href="../"><h1>error-prone</h1></a>
<p>Catch common Java mistakes as compile-time errors</p>
<p class="view"><a href="https://github.com/google/error-prone">View the Project on GitHub <small>google/error-prone</small></a></p>
<ul>
<li><a href="../bugpatterns.html">List of bug <strong>Patterns</strong></a></li>
<li><a href="../installation.html">How to <strong>Install</strong></a></li>
<li><a href="../bugpatterns">List of bug <strong>Patterns</strong></a></li>
<li><a href="../installation">How to <strong>Install</strong></a></li>
<li><a href="https://github.com/google/error-prone">View On <strong>GitHub</strong></a></li>
</ul>
</header>
Expand Down
4 changes: 2 additions & 2 deletions _layouts/master.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
<p>Catch common Java mistakes as compile-time errors</p>
<p class="view"><a href="https://github.com/google/error-prone">View the Project on GitHub <small>google/error-prone</small></a></p>
<ul>
<li><a href="bugpatterns.html">List of bug <strong>Patterns</strong></a></li>
<li><a href="installation.html">How to <strong>Install</strong></a></li>
<li><a href="bugpatterns">List of bug <strong>Patterns</strong></a></li>
<li><a href="installation">How to <strong>Install</strong></a></li>
<li><a href="https://github.com/google/error-prone">View On <strong>GitHub</strong></a></li>
</ul>
</header>
Expand Down
2 changes: 1 addition & 1 deletion bugpatterns.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ are marked __On by default__, and each release promotes some experimental checks

##{{ maturity[0] }}
{% for pattern in maturity[1] %}
__<a href="bugpattern/{{pattern.name}}.html">{{pattern.name}}</a>__<br/>
__<a href="bugpattern/{{pattern.name}}">{{pattern.name}}</a>__<br/>
{{pattern.summary}}
{% endfor %}

Expand Down
45 changes: 0 additions & 45 deletions compare-with-findbugs.md

This file was deleted.

88 changes: 0 additions & 88 deletions developing.md

This file was deleted.

0 comments on commit 8922f9a

Please sign in to comment.