This commit is contained in:
Titus Wormer 2023-06-29 12:00:02 +02:00
parent e87e026ca0
commit 462c7d4d76
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": "micromark-extension-directive", "name": "micromark-extension-directive",
"version": "2.2.1", "version": "3.0.0",
"description": "micromark extension to support generic directives (`:cite[smith04]`)", "description": "micromark extension to support generic directives (`:cite[smith04]`)",
"license": "MIT", "license": "MIT",
"keywords": [ "keywords": [

View file

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