@thi.ng/hiccup-markdown 3.2.54 → 3.2.56

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/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2023-12-31T09:44:24Z
3
+ - **Last updated**: 2024-01-26T18:03:04Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/README.md CHANGED
@@ -585,4 +585,4 @@ If this project contributes to an academic publication, please cite it as:
585
585
 
586
586
  ## License
587
587
 
588
- © 2018 - 2023 Karsten Schmidt // Apache License 2.0
588
+ © 2018 - 2024 Karsten Schmidt // Apache License 2.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/hiccup-markdown",
3
- "version": "3.2.54",
3
+ "version": "3.2.56",
4
4
  "description": "Markdown parser & serializer from/to Hiccup format",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -35,17 +35,17 @@
35
35
  "test": "bun test"
36
36
  },
37
37
  "dependencies": {
38
- "@thi.ng/api": "^8.9.16",
39
- "@thi.ng/arrays": "^2.7.13",
40
- "@thi.ng/checks": "^3.4.16",
41
- "@thi.ng/defmulti": "^3.0.14",
42
- "@thi.ng/emoji": "^0.1.22",
43
- "@thi.ng/errors": "^2.4.10",
44
- "@thi.ng/hiccup": "^5.1.5",
45
- "@thi.ng/logger": "^2.1.3",
46
- "@thi.ng/parse": "^2.4.14",
47
- "@thi.ng/strings": "^3.7.7",
48
- "@thi.ng/text-canvas": "^2.6.29"
38
+ "@thi.ng/api": "^8.9.18",
39
+ "@thi.ng/arrays": "^2.7.15",
40
+ "@thi.ng/checks": "^3.4.18",
41
+ "@thi.ng/defmulti": "^3.0.16",
42
+ "@thi.ng/emoji": "^0.1.23",
43
+ "@thi.ng/errors": "^2.4.11",
44
+ "@thi.ng/hiccup": "^5.1.7",
45
+ "@thi.ng/logger": "^2.1.4",
46
+ "@thi.ng/parse": "^2.4.16",
47
+ "@thi.ng/strings": "^3.7.9",
48
+ "@thi.ng/text-canvas": "^2.6.31"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@microsoft/api-extractor": "^7.39.0",
@@ -98,5 +98,5 @@
98
98
  ],
99
99
  "year": 2018
100
100
  },
101
- "gitHead": "b3db173682e1148cf08a6bd907b8d90b47b7c066\n"
101
+ "gitHead": "7426e2ae6fca5482c6eaf649872296fc89955374\n"
102
102
  }
package/serialize.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- interface SerializeState {
1
+ export interface SerializeState {
2
2
  indent: number;
3
3
  sep: string;
4
4
  id?: number;
@@ -7,5 +7,4 @@ interface SerializeState {
7
7
  }
8
8
  export declare const serialize: (tree: any, ctx: any) => string;
9
9
  export declare const serializeElement: import("@thi.ng/defmulti").MultiFn3<any, any, SerializeState, string>;
10
- export {};
11
10
  //# sourceMappingURL=serialize.d.ts.map