diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2017-05-31 03:03:11 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2017-05-31 03:03:11 +0300 |
commit | c0bcac7c90bbce582fe23e5f0aa05ab582880156 (patch) | |
tree | 7a42eb194e69377459365f7669492f99776f4629 /index.html | |
parent | plots: update the navbar icon (diff) | |
download | sorting-algorithms-c0bcac7c90bbce582fe23e5f0aa05ab582880156.tar.gz sorting-algorithms-c0bcac7c90bbce582fe23e5f0aa05ab582880156.zip |
plots: shorten link anchors
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 %} |