Karsten Schmidt
Karsten Schmidt
hey @acarabott - thanks for these! I've been slowly gathering more experience with mapped types and I will update the paths package (ASAP) using either the [already existing helper types](https://github.com/thi-ng/umbrella/blob/master/packages/api/src/api/keyval.ts)...
@acarabott since that above example worked quite nicely, I've just added typed versions of all the functions in that package (see https://github.com/thi-ng/umbrella/commit/319f4f84e5d1a9f09cc0d6af41244d4bdecd53a9). I think, for now, adding instead of updating...
Just for reference, some of that new functionality (e.g. `deleteInT()`) is using [these new mapped types in @thi.ng/api](https://github.com/thi-ng/umbrella/commit/7707370741dc0835218f4a9302e6076e70bf8fba). I.e. `deleteInT()` now returns a new type with the nested key removed...
Let me think about this... maybe this calls for a sub-class of `MemPool`. Also, what kind of apps are you building that you need more than 4GB? Not in the...
Hmm.. not sure what's going on here. I just tried this myself (in the node REPL) and it seems to work: ```js // md-debug.js const md = require("@thi.ng/hiccup-markdown"); const tx...
@nkint you win, i got side tracked... :)
Could it be that Parcel is transforming referenced .md files as part of the bundling process? I just looked at the example again and there I'm importing `README.txt` (not `README.md`)....
@loganpowell you can directly `import` asset files into your source and Parcel will resolve them for you as URL. Though, because MD assets are auto-transformed by Parcel (and I don't...
That'd make sense, but bloody windows linefeeds! It should be fine to just compose `parse()` with a pre-filter for `\r` chars: ```ts [...tx.iterator(md.parse(), `# hi\r\n\r\nfoo\r\n\r\n`)] // [] [...tx.iterator(tx.comp(tx.filter((x) => x...
Hi @loganpowell - off the top of my head I can't quite say if this is something which is related to the recent updates, but I can't replicate this issue...