@thi.ng/parse 2.2.25 → 2.2.27

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-02-10T14:03:10Z
3
+ - **Last updated**: 2023-02-27T21:43:54Z
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
@@ -42,6 +42,8 @@ This project is part of the
42
42
 
43
43
  Purely functional parser combinators & AST generation for generic inputs.
44
44
 
45
+ There's a 2h 45m long video tutorial (live stream) introducing this package: [Building a web editor for creating/testing parse grammars](https://www.youtube.com/watch?v=mXp92s_VP40)
46
+
45
47
  ### Features
46
48
 
47
49
  - Parser generation/compilation via built-in grammar DSL
@@ -107,6 +109,7 @@ A selection:
107
109
 
108
110
  | Screenshot | Description | Live demo | Source |
109
111
  |:------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------|:-------------------------------------------------------|:------------------------------------------------------------------------------------|
112
+ | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/markdown-parser.jpg" width="240"/> | Markdown to Hiccup to HTML parser / transformer | [Demo](https://demo.thi.ng/umbrella/markdown/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/markdown) |
110
113
  | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/parse-playground.png" width="240"/> | Parser grammar livecoding editor/playground & codegen | [Demo](https://demo.thi.ng/umbrella/parse-playground/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/parse-playground) |
111
114
 
112
115
  **Note:** Please also see the [dedicated wiki
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/parse",
3
- "version": "2.2.25",
3
+ "version": "2.2.27",
4
4
  "description": "Purely functional parser combinators & AST generation for generic inputs",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -38,7 +38,7 @@
38
38
  "@thi.ng/checks": "^3.3.9",
39
39
  "@thi.ng/defmulti": "^2.1.30",
40
40
  "@thi.ng/errors": "^2.2.11",
41
- "@thi.ng/strings": "^3.3.26"
41
+ "@thi.ng/strings": "^3.4.0"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@microsoft/api-extractor": "^7.34.2",
@@ -241,5 +241,5 @@
241
241
  ],
242
242
  "year": 2020
243
243
  },
244
- "gitHead": "cafa4ecea90fb681949dc3885a5bd6ddefa38b51\n"
244
+ "gitHead": "060a3a69281094df70be0e4f326a0ac3bbc3dd1d\n"
245
245
  }