* updated german links * fixed links where `QingWei-Li` should've been `docsifyjs` * naturally excluded donate links and links to private projects like `vuep` unrelated to docsify --- See commit for details. If you have a question, just ask.
55 lines
1.3 KiB
Markdown
55 lines
1.3 KiB
Markdown
# CDN
|
|
|
|
> content delivery network = Netzwerk zur Verteilung von Inhalten
|
|
|
|
Empfohlen:
|
|
[unpkg](https://unpkg.com), welches jeweils die aktuelle Version liefert, wie sie über npm veröffentlicht wurde.
|
|
Du kannst den Quellcode des npm Packets auch über [unpkg.com/docsify/](https://unpkg.com/docsify/) anschauen.
|
|
|
|
## Aktuelle Version
|
|
|
|
```html
|
|
<!-- lade CSS -->
|
|
<link rel="stylesheet" href="//unpkg.com/docsify/themes/vue.css">
|
|
|
|
<!-- lade Script -->
|
|
<script src="//unpkg.com/docsify/lib/docsify.js"></script>
|
|
```
|
|
|
|
Alternativ kannst du auch die [komprimierten Dateien](#komprimierte-dateien) verwenden.
|
|
|
|
## Spezifische Versionen
|
|
|
|
```html
|
|
<!-- lade CSS -->
|
|
<link rel="stylesheet" href="//unpkg.com/docsify@2.0.0/themes/vue.css">
|
|
|
|
<!-- lade Script -->
|
|
<script src="//unpkg.com/docsify@2.0.0/lib/docsify.js"></script>
|
|
```
|
|
|
|
## Komprimierte Dateien
|
|
|
|
```html
|
|
<!-- lade CSS -->
|
|
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css">
|
|
|
|
<!-- lade Script -->
|
|
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
|
|
```
|
|
|
|
oder auch:
|
|
|
|
```html
|
|
<!-- lade CSS -->
|
|
<link rel="stylesheet" href="//unpkg.com/docsify@2.0.0/lib/themes/vue.css">
|
|
|
|
<!-- lade Script -->
|
|
<script src="//unpkg.com/docsify@2.0.0/lib/docsify.min.js"></script>
|
|
```
|
|
|
|
## Andere CDN
|
|
|
|
- <http://www.bootcdn.cn/docsify>
|
|
- <https://cdn.jsdelivr.net/npm/docsify/>
|
|
- <https://cdnjs.com/libraries/docsify>
|