This commit is contained in:
Titus Wormer 2023-09-18 13:28:45 +02:00
parent edef661a1f
commit e1027d13bd
No known key found for this signature in database
GPG key ID: E6E581152ED04E2E
2 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
{
"name": "remark-directive",
"version": "2.0.1",
"version": "3.0.0",
"description": "remark plugin to support directives",
"license": "MIT",
"keywords": [

View file

@ -73,14 +73,14 @@ npm install remark-directive
In Deno with [`esm.sh`][esmsh]:
```js
import remarkDirective from 'https://esm.sh/remark-directive@2'
import remarkDirective from 'https://esm.sh/remark-directive@3'
```
In browsers with [`esm.sh`][esmsh]:
```html
<script type="module">
import remarkDirective from 'https://esm.sh/remark-directive@2?bundle'
import remarkDirective from 'https://esm.sh/remark-directive@3?bundle'
</script>
```