diff options
author | Alexey Shmalko <[email protected]> | 2021-11-30 11:18:08 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2021-11-30 10:18:08 +0100 |
commit | f7b72fe7a86eef0b0e9070d5e752b0bf21ac0f3f (patch) | |
tree | 7fc859a2f3ba4db4a7662bc8bb3bf6c560f80af4 | |
parent | 0ff98bfc93dab79c257b0c84b5dd7c8db37e1590 (diff) |
feat(preview): support footnotes (#172)
Update uniorg-rehype to 0.4.8, which adds support for footnotes.
fixes #170
-rw-r--r-- | package-lock.json | 28 | ||||
-rw-r--r-- | package.json | 4 |
2 files changed, 16 insertions, 16 deletions
diff --git a/package-lock.json b/package-lock.json index 51abe43..7b10103 100644 --- a/package-lock.json +++ b/package-lock.json @@ -63,8 +63,8 @@ "uniorg-attach": "^0.4.5", "uniorg-extract-keywords": "^0.4.5", "uniorg-parse": "^0.4.5", - "uniorg-rehype": "^0.4.7", - "uniorg-slug": "^0.4.7", + "uniorg-rehype": "^0.4.8", + "uniorg-slug": "^0.4.8", "unist-util-find-after": "^3.0.0", "unist-util-is": "^4.1.0", "use-constant": "^1.1.0", @@ -9893,18 +9893,18 @@ } }, "node_modules/uniorg-rehype": { - "version": "0.4.7", - "resolved": "https://registry.npmjs.org/uniorg-rehype/-/uniorg-rehype-0.4.7.tgz", - "integrity": "sha512-Pmtv4KpRIQM9/QwH6ligtuTXCNEBIw3xxQ38doEUdoYYUdFD+FKMwRfWm5Gwj3xABQqd/eDXgvdyilllbZAjIA==", + "version": "0.4.8", + "resolved": "https://registry.npmjs.org/uniorg-rehype/-/uniorg-rehype-0.4.8.tgz", + "integrity": "sha512-DXOdP8LjdhI0NPIzu3N7qPO7MlIK/Oxr4HVL+tPsCjN6rLNHMNEVx8c9ehUQMxZFnN0scK7GXU0MneHz4r8wiQ==", "dependencies": { "hastscript": "^6.0.0", "unist-builder": "^2.0.3" } }, "node_modules/uniorg-slug": { - "version": "0.4.7", - "resolved": "https://registry.npmjs.org/uniorg-slug/-/uniorg-slug-0.4.7.tgz", - "integrity": "sha512-2GjdzpDCbVs8TEuv24o+K3QUy7I5ZcNmHBF/UvyBBAYR6ztFkTAJ/gZ1kBzK/pI5mYh9/21g2BSSJ2bvlR9Cng==", + "version": "0.4.8", + "resolved": "https://registry.npmjs.org/uniorg-slug/-/uniorg-slug-0.4.8.tgz", + "integrity": "sha512-IBAVZdJr7q1cQ4kSO/txOCtd8BGW49kcQg+HTz38T+xezL6OWfRmjjykFFwhAWv7Fm7nulxuYygP7V08e7tWdw==", "dependencies": { "github-slugger": "^1.3.0", "orgast-util-to-string": "^0.4.5", @@ -18034,18 +18034,18 @@ } }, "uniorg-rehype": { - "version": "0.4.7", - "resolved": "https://registry.npmjs.org/uniorg-rehype/-/uniorg-rehype-0.4.7.tgz", - "integrity": "sha512-Pmtv4KpRIQM9/QwH6ligtuTXCNEBIw3xxQ38doEUdoYYUdFD+FKMwRfWm5Gwj3xABQqd/eDXgvdyilllbZAjIA==", + "version": "0.4.8", + "resolved": "https://registry.npmjs.org/uniorg-rehype/-/uniorg-rehype-0.4.8.tgz", + "integrity": "sha512-DXOdP8LjdhI0NPIzu3N7qPO7MlIK/Oxr4HVL+tPsCjN6rLNHMNEVx8c9ehUQMxZFnN0scK7GXU0MneHz4r8wiQ==", "requires": { "hastscript": "^6.0.0", "unist-builder": "^2.0.3" } }, "uniorg-slug": { - "version": "0.4.7", - "resolved": "https://registry.npmjs.org/uniorg-slug/-/uniorg-slug-0.4.7.tgz", - "integrity": "sha512-2GjdzpDCbVs8TEuv24o+K3QUy7I5ZcNmHBF/UvyBBAYR6ztFkTAJ/gZ1kBzK/pI5mYh9/21g2BSSJ2bvlR9Cng==", + "version": "0.4.8", + "resolved": "https://registry.npmjs.org/uniorg-slug/-/uniorg-slug-0.4.8.tgz", + "integrity": "sha512-IBAVZdJr7q1cQ4kSO/txOCtd8BGW49kcQg+HTz38T+xezL6OWfRmjjykFFwhAWv7Fm7nulxuYygP7V08e7tWdw==", "requires": { "github-slugger": "^1.3.0", "orgast-util-to-string": "^0.4.5", diff --git a/package.json b/package.json index a2d52eb..e90f2fb 100644 --- a/package.json +++ b/package.json @@ -66,8 +66,8 @@ "uniorg-attach": "^0.4.5", "uniorg-extract-keywords": "^0.4.5", "uniorg-parse": "^0.4.5", - "uniorg-rehype": "^0.4.7", - "uniorg-slug": "^0.4.7", + "uniorg-rehype": "^0.4.8", + "uniorg-slug": "^0.4.8", "unist-util-find-after": "^3.0.0", "unist-util-is": "^4.1.0", "use-constant": "^1.1.0", |