@unified-latex/unified-latex-util-environments 1.0.0 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -0
- package/package.json +8 -7
package/README.md
CHANGED
|
@@ -13,6 +13,15 @@ Functions to report on/manipulate environments in a `unified-latex` Abstract Syn
|
|
|
13
13
|
If you are working on the internals of `unified-latex-util-parse` or need to make a custom parser
|
|
14
14
|
that treats environments differently.
|
|
15
15
|
|
|
16
|
+
## Install
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
npm install @unified-latex/unified-latex-util-environments
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
This package contains both esm and commonjs exports. To explicitly access the esm export,
|
|
23
|
+
import the `.js` file. To explicitly access the commonjs export, import the `.cjs` file.
|
|
24
|
+
|
|
16
25
|
# Plugins
|
|
17
26
|
|
|
18
27
|
## `unifiedLatexProcessEnvironments`
|
package/package.json
CHANGED
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unified-latex/unified-latex-util-environments",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "Tools for manipulating unified-latex ASTs",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@unified-latex/unified-latex-types": "
|
|
9
|
-
"@unified-latex/unified-latex-util-
|
|
10
|
-
"@unified-latex/unified-latex-util-
|
|
11
|
-
"@unified-latex/unified-latex-util-
|
|
12
|
-
"@unified-latex/unified-latex-util-
|
|
13
|
-
"@unified-latex/unified-latex-util-visit": "
|
|
8
|
+
"@unified-latex/unified-latex-types": "^1.0.5",
|
|
9
|
+
"@unified-latex/unified-latex-util-arguments": "^1.0.5",
|
|
10
|
+
"@unified-latex/unified-latex-util-match": "^1.0.5",
|
|
11
|
+
"@unified-latex/unified-latex-util-print-raw": "^1.0.5",
|
|
12
|
+
"@unified-latex/unified-latex-util-render-info": "^1.0.5",
|
|
13
|
+
"@unified-latex/unified-latex-util-visit": "^1.0.5",
|
|
14
|
+
"unified": "^10.1.2"
|
|
14
15
|
},
|
|
15
16
|
"files": [
|
|
16
17
|
"dist/**/*.ts",
|