UNPKG

mergely

Version:

A javascript UI for diff/merge

50 lines (41 loc) 1.54 kB
<!-- This example demonstrates the minimum amount of code required to use Mergely. --> <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /><title>Mergely - Simple 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="Mergely examples" /> <meta name="keywords" content="mergely,diff,merge,compare" /> <meta name="author" content="Jamie Peabody" /> <link rel="icon" href="/favicon.svg" type="image/svg+xml"> <style type="text/css"> dd { margin-bottom: 1em; } </style> </head> <body> <h1>Examples</h1> <dl> <dt><a href="cdn.html">cdn.html</a></dt> <dd>Demonstrates how to use Mergely with CDN.</dd> <dt><a href="editor.html">editor.html</a></dt> <dd>An example editor showcasing some of Mergely's API features.</dd> <dt><a href="fixed-height.html">fixed-height.html</a></dt> <dd>A fixed height editor.</dd> <dt><a href="fixed-size.html">fixed-size.html</a></dt> <dd>A fixed size editor.</dd> <dt><a href="full-page.html">full-page.html</a></dt> <dd>A full page editor.</dd> <dt><a href="change-styles.html">change-styles.html</a></dt> <dd>Showcase the change styles.</dd> <dt><a href="scroll-to-first-change.html">scroll-to-first-change.html</a></dt> <dd>Scrolls to first change on initial render.</dd> <dt><a href="visible.html">visible.html</a></dt> <dd>An editor that becomes visible once ready (less flicker).</dd> </dl> </body> </html>