ribbit/test/integration/index.html

34 lines
735 B
HTML
Raw Permalink Normal View History

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Ribbit Integration Test Page</title>
2026-05-15 15:18:31 -07:00
<link rel="stylesheet" href="/static/themes/ribbit-default/theme.css">
</head>
<body>
2026-05-15 16:52:04 -07:00
<main>
2026-05-15 20:31:27 -07:00
<article id="ribbit">
2026-05-15 16:52:04 -07:00
| Type | To Get |
|------|--------|
| `*emphasis*` | *emphasis* |
| `**bold**` | **bold** |
| `abel](/link/address)` | [link label](/link/address) |
| ``inline`` | `inline` |
</article>
2026-05-15 16:52:04 -07:00
</main>
2026-05-15 15:18:31 -07:00
<script src="/static/ribbit.js"></script>
<script>
const editor = new ribbit.Editor({
on: {
ready: () => { window.__ribbitReady = true; },
},
});
editor.run();
window.__ribbitEditor = editor;
</script>
</body>
</html>