an-official-cdn-for-quill.mdx 481 B

1234567891011121314151617181920
  1. ---
  2. title: An Offical CDN for Quill
  3. date: 2014-08-12
  4. ---
  5. Quill now has an offical Content Distribution Network so you can have access to a reliable, high-speed host for the library. To include a file:
  6. ```html
  7. <link rel="stylesheet" href="//cdn.quilljs.com/0.16.0/quill.snow.css" />
  8. ```
  9. ```html
  10. <script src="//cdn.quilljs.com/0.16.0/quill.min.js"></script>
  11. ```
  12. You can also use "latest" as the version:
  13. ```html
  14. <script src="//cdn.quilljs.com/latest/quill.min.js"></script>
  15. ```