-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathtags.html
More file actions
36 lines (29 loc) · 1.06 KB
/
tags.html
File metadata and controls
36 lines (29 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
---
layout: default
title: Publications by Tag
description: A list of research papers for machine learning models for source code.
---
{% assign rawtags = Array.new %}
{% for publication in site.publications %}
{% assign ttags = publication.tags %}
{% assign rawtags = rawtags | concat: ttags %}
{% endfor %}
{% assign rawtags = rawtags | uniq | sort_natural %}
<h1>Publications by Tag</h1>
<p>
The following tags appear in the publications listed in the review:
</p>
{% for tag in rawtags %}<tag><a href="/tags.html#{{ tag }}">{{ tag }}</a></tag> {% endfor %}
<h2>Tags</h2>
<p>See below a list of all tags and the related papers</p>
{% assign sortedPublications = site.publications | sort: "authors" | sort: "year"%}
{% for tag in rawtags %}
<h3>🏷 {{ tag }} <a id="{{ tag }}"></a></h3>
<ul>
{% for publication in sortedPublications %}
{% if publication.tags contains tag %}
<li> <a href="{{ publication.url | prepend: site.baseurl }}">{{publication.title}}</a> {{ publication.authors }} </li>
{% endif %}
{% endfor %}
</ul>
{% endfor %}