aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2017-05-31 03:03:11 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2017-05-31 03:03:11 +0300
commitc0bcac7c90bbce582fe23e5f0aa05ab582880156 (patch)
tree7a42eb194e69377459365f7669492f99776f4629
parentplots: update the navbar icon (diff)
downloadsorting-algorithms-c0bcac7c90bbce582fe23e5f0aa05ab582880156.tar.gz
sorting-algorithms-c0bcac7c90bbce582fe23e5f0aa05ab582880156.zip
plots: shorten link anchors
-rw-r--r--index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/index.html b/index.html
index 3c15cd3..139f98a 100644
--- a/index.html
+++ b/index.html
@@ -176,7 +176,7 @@ corresponding algorithm.</p>
<tbody>
{% for algorithm in page.plots %}
<tr>
- <td><a href="#plots_{{ algorithm.codename }}">{{ algorithm.brief_name }}</a></td>
+ <td><a href="#{{ algorithm.codename }}">{{ algorithm.brief_name }}</a></td>
{% for input_kind in page.input_kind %}
{% if algorithm.complexity[input_kind] %}
{% assign complexity = algorithm.complexity[input_kind] %}
@@ -193,7 +193,7 @@ corresponding algorithm.</p>
</div>
{% for algorithm in page.plots %}
-<a id="plots_{{ algorithm.codename }}"></a>
+<a id="{{ algorithm.codename }}"></a>
<h3>{{ algorithm.display_name }}</h3>
<div class="row">
{% for input_kind in page.input_kind %}