Skip to content

Commit

Permalink
add anchor links
Browse files Browse the repository at this point in the history
  • Loading branch information
blakadder committed Sep 9, 2021
1 parent e3f179c commit 26dc4cf
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion cover.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ <h2>{{ page.title }}</h2>
{% assign type_grouped = type_group %}
{% for group in type_grouped %}
<BR>
<h3>{{group.name}}</h3>
<h3><a id="{{ group.name | downcase }}"></a>{{group.name}}</h3>
<table id="{{group.name}}" width="80%">
<tbody>
{% assign grouptitlesorted = group.items | sort_natural: 'title' %}
Expand Down
2 changes: 1 addition & 1 deletion diy.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ <h2>{{ page.title }}</h2>
{% assign type_grouped = type_group | sort: 'name' %}
{% for group in type_grouped %}
<BR>
<h3>{{ group.name }}</h3>
<h3><a id="{{ group.name | downcase }}"></a>{{ group.name }}</h3>
<table id="{{ group.name }}" width="80%">
<tbody>
{% assign grouptitlesorted = group.items | sort_natural: 'title' %}
Expand Down
2 changes: 1 addition & 1 deletion light.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ <h2>{{ page.title }}</h2>
{% assign type_grouped = type_group | sort: 'name' %}
{% for group in type_grouped %}
<BR>
<h3>{{group.name}}</h3>
<h3><a id="{{ group.name | downcase }}"></a>{{group.name}}</h3>
<table id="{{group.name}}" width="80%">
<tbody>
{% assign grouptitlesorted = group.items | sort_natural: 'title' %}
Expand Down
2 changes: 1 addition & 1 deletion misc.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ <h2>{{ page.title }}</h2>
{% assign type_grouped = type_group | sort: 'name' %}
{% for group in type_grouped %}
<BR>
<h3>{{group.name}}</h3>
<h3><a id="{{ group.name | downcase }}"></a>{{group.name}}</h3>
<table id="{{group.name}}" width="80%">
<tbody>
{% assign grouptitlesorted = group.items | sort_natural: 'title' %}
Expand Down
2 changes: 1 addition & 1 deletion plug.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ <h2>{{ page.title }}</h2>
{% assign type_grouped = type_group %}
{% for group in type_grouped %}
<BR>
<h3>{{group.name}}</h3>
<h3><a id="{{ group.name | downcase }}"></a>{{group.name}}</h3>
<table id="{{group.name}}" width="80%">
<tbody>
{% assign grouptitlesorted = group.items | sort_natural: 'title' %}
Expand Down
2 changes: 1 addition & 1 deletion relay.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ <h2>{{ page.title }}</h2>
{% assign type_grouped = type_group %}
{% for group in type_grouped %}
<BR>
<h3>{{group.name}}</h3>
<h3><a id="{{ group.name | downcase }}"></a>{{group.name}}</h3>
<table id="{{group.name}}" width="80%">
<tbody>
{% assign grouptitlesorted = group.items | sort_natural: 'title' %}
Expand Down
2 changes: 1 addition & 1 deletion sensors.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ <h2>{{ page.title }}</h2>
{% assign type_grouped = type_group %}
{% for group in type_grouped %}
<BR>
<h3>{{group.name}}</h3>
<h3><a id="{{ group.name | downcase }}"></a>{{group.name}}</h3>
<table id="{{group.name}}" width="80%">
<tbody>
{% assign grouptitlesorted = group.items | sort_natural: 'title' %}
Expand Down
2 changes: 1 addition & 1 deletion switch.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ <h2>{{ page.title }}</h2>
{% assign type_grouped = type_group %}
{% for group in type_grouped %}
<BR>
<h3>{{group.name}}</h3>
<h3><a id="{{ group.name | downcase }}"></a>{{group.name}}</h3>
<table id="{{group.name}}" width="80%">
<tbody>
{% assign grouptitlesorted = group.items | sort_natural: 'title' %}
Expand Down

0 comments on commit 26dc4cf

Please sign in to comment.