ofermend's picture
Update index.html
672e4cc
raw
history blame
1.03 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" />
<script src="https://cdn.jsdelivr.net/npm/showdown/dist/showdown.min.js"></script>
</head>
<body>
<div class="card">
<h1>Welcome to your static Space!</h1>
<p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
<p>
Also don't forget to check the
<a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
</p>
</div>
<script>
fetch('leaderboard.md')
.then(response => response.text())
.then(text => {
var converter = new showdown.Converter();
var html = converter.makeHtml(text);
document.getElementById('content').innerHTML = html;
});
</script>
</body>
</html>