Skip to content

Commit

Permalink
Remove unused id attribute from slugified links
Browse files Browse the repository at this point in the history
  • Loading branch information
erinysong committed May 16, 2024
1 parent 9031f1c commit 4c2beb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _includes/layouts/data.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ <h1 class="title">{{title}}</h1>
<ul>
{% for item in site.data[page.datafile] %}
<li>
<a href="{{ item.url }}" id="{{ item.id }}"><b>{{ item.name }}</b></a>: {{item.description}}
<a href="{{ item.url }}"><b>{{ item.name }}</b></a>: {{item.description}}
</li>
{% endfor %}
</ul>
Expand Down

0 comments on commit 4c2beb8

Please sign in to comment.