JSFiddle - React, Tailwind, and code Playground
HTML
<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript" src="http://github.com/jquery/jquerytmpl/
raw/master/jquery.tmpl.js"></script>
<script type="text/jquery-tmpl" id="tmplStudent">
<li>
${name} - ${code}
</li>
</script>
<script type="text/javascript">
var students = [{"name": "Portáltechnológia MSc","code": "pMSC"},{"name": "Portáltechnológia BSc","code": "pBSC"},{"name": "Statisztika","code": "stat"},{"name": "Mikroökonómia","code": "mikro"},{"name": "Számítógéparchitektúrák","code": "szamark"}];
$("#tmplStudent")
.tmpl(students)
.appendTo( "ul#students" );
</script>
</head>
<body>
<ul id="students">
<tr>
<th>Név</th>
<th>Kód</th>
</tr>
</ul>
</body>
</html>