@thi.ng/hiccup-markdown 3.2.189 → 3.2.191

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.
Files changed (3) hide show
  1. package/README.md +2 -2
  2. package/package.json +15 -15
  3. package/parse.js +1 -0
package/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
  [![Mastodon Follow](https://img.shields.io/mastodon/follow/109331703950160316?domain=https%3A%2F%2Fmastodon.thi.ng&style=social)](https://mastodon.thi.ng/@toxi)
8
8
 
9
9
  > [!NOTE]
10
- > This is one of 214 standalone projects, maintained as part
10
+ > This is one of 215 standalone projects, maintained as part
11
11
  > of the [@thi.ng/umbrella](https://codeberg.org/thi.ng/umbrella/) ecosystem
12
12
  > and anti-framework.
13
13
  >
@@ -551,7 +551,7 @@ For Node.js REPL:
551
551
  const md = await import("@thi.ng/hiccup-markdown");
552
552
  ```
553
553
 
554
- Package sizes (brotli'd, pre-treeshake): ESM: 4.63 KB
554
+ Package sizes (brotli'd, pre-treeshake): ESM: 4.72 KB
555
555
 
556
556
  ## Dependencies
557
557
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/hiccup-markdown",
3
- "version": "3.2.189",
3
+ "version": "3.2.191",
4
4
  "description": "Markdown parser & serializer from/to Hiccup format",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -40,21 +40,21 @@
40
40
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
41
41
  },
42
42
  "dependencies": {
43
- "@thi.ng/api": "^8.12.18",
44
- "@thi.ng/arrays": "^2.14.14",
45
- "@thi.ng/checks": "^3.8.8",
46
- "@thi.ng/defmulti": "^3.0.95",
47
- "@thi.ng/emoji": "^1.0.36",
48
- "@thi.ng/errors": "^2.6.7",
49
- "@thi.ng/hiccup": "^5.4.3",
50
- "@thi.ng/logger": "^3.3.1",
51
- "@thi.ng/parse": "^2.6.50",
52
- "@thi.ng/strings": "^3.12.0",
53
- "@thi.ng/text-canvas": "^3.0.116"
43
+ "@thi.ng/api": "^8.12.20",
44
+ "@thi.ng/arrays": "^2.14.16",
45
+ "@thi.ng/checks": "^3.9.0",
46
+ "@thi.ng/defmulti": "^3.0.97",
47
+ "@thi.ng/emoji": "^1.0.38",
48
+ "@thi.ng/errors": "^2.6.9",
49
+ "@thi.ng/hiccup": "^5.4.5",
50
+ "@thi.ng/logger": "^3.3.3",
51
+ "@thi.ng/parse": "^2.6.52",
52
+ "@thi.ng/strings": "^3.12.2",
53
+ "@thi.ng/text-canvas": "^3.0.118"
54
54
  },
55
55
  "devDependencies": {
56
- "esbuild": "^0.27.2",
57
- "typedoc": "^0.28.16",
56
+ "esbuild": "^0.28.0",
57
+ "typedoc": "^0.28.18",
58
58
  "typescript": "^5.9.3"
59
59
  },
60
60
  "keywords": [
@@ -102,5 +102,5 @@
102
102
  ],
103
103
  "year": 2018
104
104
  },
105
- "gitHead": "929fb6590178a41cbb77cbb87e07c59c61381607\n"
105
+ "gitHead": "92be63f24030506f09d6d156804da2798c381dc4"
106
106
  }
package/parse.js CHANGED
@@ -192,6 +192,7 @@ class ParseError extends Error {
192
192
  );
193
193
  this.state = state;
194
194
  }
195
+ state;
195
196
  }
196
197
  const parse = (src, {
197
198
  tags,