diff options
Diffstat (limited to 'scripts/src/lib/quill/examples/snow.html')
-rw-r--r-- | scripts/src/lib/quill/examples/snow.html | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/scripts/src/lib/quill/examples/snow.html b/scripts/src/lib/quill/examples/snow.html new file mode 100644 index 0000000..85382b3 --- /dev/null +++ b/scripts/src/lib/quill/examples/snow.html @@ -0,0 +1,70 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <title>Snow Theme - Quill Rich Text Editor</title> + <meta charset="utf-8"> +<meta http-equiv="X-UA-Compatible" content="IE=edge"> +<meta name="language" content="english"> +<meta name="viewport" content="width=device-width"> + +<meta name="description" content="Quill is a free, open source WYSIWYG editor built for the modern web. Completely customize it for any need with its modular architecture and expressive API."> + +<meta name="twitter:card" content="summary"> +<meta name="twitter:site" content="@quilljs"> + +<meta name="twitter:title" content="Snow Theme - Quill"> + +<meta name="twitter:description" content="Quill is a free, open source rich text editor built for the modern web."> +<meta name="twitter:image" content="https://quilljs.com/assets/images/brand-asset.png"> +<meta property="og:type" content="website"> +<meta property="og:url" content="https://quilljs.com/standalone/snow/"> +<meta property="og:image" content="https://quilljs.com/assets/images/brand-asset.png"> +<meta property="og:title" content="Snow Theme - Quill"> +<meta property="og:site_name" content="Quill"> + +<link rel="canonical" href="https://quilljs.com/standalone/snow/"> +<link type="application/atom+xml" rel="alternate" href="https://quilljs.com/feed.xml" title="Quill - Your powerful rich text editor" /> + + +<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.7.1/katex.min.css" /> + +<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/monokai-sublime.min.css" /> + +<link rel="stylesheet" href="../quill.snow.css" /> + +<style> + .standalone-container { + margin: 50px auto; + max-width: 720px; + } + #snow-container { + height: 350px; + } +</style> + + +</head> +<body> + +<div class="standalone-container"> + <div id="snow-container"></div> +</div> + + + +<script src="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.7.1/katex.min.js"></script> + +<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js"></script> + +<script src="../quill.min.js"></script> + +<script> + var quill = new Quill('#snow-container', { + placeholder: 'Compose an epic...', + theme: 'snow' + }); +</script> + + +</body> +</html> |