ofermend's picture
Update index.html
1d3ee48
raw
history blame
No virus
1.15 kB
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Vectara's Hallucination Evaluation Model Leaderboard</title>
<link rel="stylesheet" href="style.css" />
<style>
/* Style the table */
table {
border-collapse: collapse;
}
/* Style the table cells */
th, td {
border: 1px solid black;
padding: 8px;
text-align: left;
}
</style>
<script src="https://cdn.jsdelivr.net/npm/showdown/dist/showdown.min.js"></script>
</head>
<body>
<div id="content"></div>
<script>
fetch('https://raw.githubusercontent.com/vectara/hallucination-leaderboard/main/README.md')
.then(response => response.text())
.then(text => {
var converter = new showdown.Converter({tables: true});
var html = converter.makeHtml(text);
document.getElementById('content').innerHTML = html;
});
</script>
</body>
</html>