mirror of
https://github.com/showdownjs/showdown.git
synced 2024-03-22 13:30:55 +08:00
68 lines
1.4 KiB
Markdown
68 lines
1.4 KiB
Markdown
## Packages
|
|
|
|
### npm (server-side)
|
|
|
|
```
|
|
npm install showdown
|
|
```
|
|
|
|
### Bower
|
|
|
|
```
|
|
bower install showdown
|
|
```
|
|
|
|
### NuGet
|
|
|
|
```
|
|
PM> Install-Package showdownjs
|
|
```
|
|
|
|
More information about the package you can find on the [NuGet website](https://www.nuget.org/packages/showdownjs/).
|
|
|
|
### Tarball
|
|
|
|
You can download the latest tarball directly from [releases][releases].
|
|
|
|
## CDN
|
|
|
|
You can also use one of several CDNs available:
|
|
|
|
### jsDelivr
|
|
|
|
```
|
|
https://cdn.jsdelivr.net/npm/showdown@<version>/dist/showdown.min.js
|
|
```
|
|
|
|
[Showndown page on jsDelivr](https://www.jsdelivr.com/package/npm/showdown)
|
|
|
|
### cdnjs
|
|
|
|
```
|
|
https://cdnjs.cloudflare.com/ajax/libs/showdown/<version>/showdown.min.js
|
|
```
|
|
|
|
[Showndown page on cdnjs](https://cdnjs.com/libraries/showdown)
|
|
|
|
### unpkg
|
|
|
|
```
|
|
https://unpkg.com/showdown/dist/showdown.min.js
|
|
```
|
|
|
|
[Showndown page on unpkg](https://unpkg.com/browse/showdown@latest/)
|
|
|
|
!!! note ""
|
|
Replace `<version>` with an actual full length version you're interested in. For example, `2.0.3`.
|
|
|
|
## Previous versions
|
|
|
|
If you're looking for Showdown prior to version 1.0.0, you can find them in the [legacy branch][legacy-branch].
|
|
|
|
## Changelog
|
|
|
|
The full changelog is available [here][changelog].
|
|
|
|
[legacy-branch]: https://github.com/showdownjs/showdown/tree/legacy
|
|
[releases]: https://github.com/showdownjs/showdown/releases
|
|
[changelog]: https://github.com/showdownjs/showdown/blob/master/CHANGELOG.md |