From edebbe0c3965bd90a56af40c300311a0a865d57c Mon Sep 17 00:00:00 2001 From: Greg Dennis Date: Wed, 29 Nov 2023 18:31:30 +1300 Subject: [PATCH] add link to docs in json-e post --- _posts/2023/2023-11-27-json-e.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2023/2023-11-27-json-e.md b/_posts/2023/2023-11-27-json-e.md index f8ed423..5e6e27c 100644 --- a/_posts/2023/2023-11-27-json-e.md +++ b/_posts/2023/2023-11-27-json-e.md @@ -10,7 +10,7 @@ pin: false At least that's how they describe it. My take would be that it's something of an amalgamation between [JSONLogic](https://jsonlogic.com/) and [Jsonnet](https://jsonnet.org/). It supports expressions, through which it can do a lot of the logic things that JSON Logic gives you, and it can perform templating and data transformations, giving you a lot of what Jsonnet can do. -Their [docs](https://json-e.js.org/) are really great, and I recommend reading through those. It's not long, but it still does a good job of covering what JSON-e can do. I'll also be writing some docs for how you can use JSON-e in .Net. +Their [docs](https://json-e.js.org/) are really great, and I recommend reading through those. It's not long, but it still does a good job of covering what JSON-e can do. I've also written some [docs](https://docs.json-everything.net/json-e/basics/) for how you can use JSON-e in .Net. This post is going to highlight some of the interesting aspects of the expression syntax that I discovered while implementing it. It's going to take a bit of setup, which is why this post is a bit longer than some of my others. So grab a drink and get comfy because it's gonna get fun.