mirror of
https://github.com/basecamp/trix.git
synced 2026-06-16 12:04:34 +00:00
26 lines
778 B
HTML
26 lines
778 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Trix</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
|
<link rel="stylesheet" type="text/css" href="trix.css">
|
|
<style type="text/css">
|
|
trix-editor, #formatted-content {
|
|
width: 500px;
|
|
margin-bottom: 100px;
|
|
}
|
|
</style>
|
|
<script type="text/javascript" src="trix.js"></script>
|
|
<script type="text/javascript" src="trix/inspector.js"></script>
|
|
<script type="text/javascript">
|
|
document.addEventListener("trix-initialize", function(event) {
|
|
Trix.Inspector.install(event.target);
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<trix-editor autofocus class="trix-content"></trix-editor>
|
|
</body>
|
|
</html>
|