Skip to content

Latest commit

 

History

History
55 lines (41 loc) · 1.33 KB

cdn.md

File metadata and controls

55 lines (41 loc) · 1.33 KB

CDN

Recommended: jsDelivr. You can also browse the source of the npm package at cdn.jsdelivr.net/npm/docsify/.

Specific version (RECOMMENDED)

<!-- load css -->
<link
  rel="stylesheet"
  href="//cdn.jsdelivr.net/npm/[email protected]/lib/themes/vue.css"
/>

<!-- load script -->
<script src="//cdn.jsdelivr.net/npm/[email protected]/lib/docsify.min.js"></script>

Latest version (NOT RECOMMENDED!)

We highly recommend you do not use this method.

Using the latest version can break your app when docsify is updated due to breaking changes, either when accidental bugs are introduced, or when a new major version is realeased with altered features.

<!-- load css -->
<link
  rel="stylesheet"
  href="//cdn.jsdelivr.net/npm/docsify/lib/themes/vue.css"
/>

<!-- load script -->
<script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script>

Uncompressed files for debugging

<!-- load css -->
<link
  rel="stylesheet"
  href="//cdn.jsdelivr.net/npm/[email protected]/themes/vue.css"
/>

<!-- load script -->
<script src="//cdn.jsdelivr.net/npm/[email protected]/lib/docsify.js"></script>

Other CDNs