mergely
Version:
A javascript UI for diff/merge
30 lines (28 loc) • 699 B
HTML
<!--
This example demonstrates the minimum amount of code required to use Mergely.
-->
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Mergely - Application example</title>
<meta http-equiv="X-UA-Compatible" content="chrome=1, IE=edge">
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="author" content="Jamie Peabody" />
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
<style type="text/css">
html, body {
height: 100%;
margin: 0;
}
#compare {
height: inherit;
}
</style>
</head>
<body>
<div id="compare"></div>
</body>
</html>