From 4660799e68fc24affa1abb7a7bc4eee509e2f03a Mon Sep 17 00:00:00 2001 From: Wojciech Kaczmarek Date: Wed, 13 Sep 2023 15:33:27 +0200 Subject: [PATCH] readme: note about hcl limitation --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d0dec95..a257cbf 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ but more basic: inside the brackets; no need for an artificial `resource` keyword * dead-simple API: variables get evaluated automatically and fill the fields of the output structure; - no need to invoke arcane wisdom for evaluation + no [strange limitations] of where variables can be defined * detection of variable reference cycles * _O(N)_ lexer and parser * deserialization aka unmarshalling to static Go structs @@ -70,3 +70,6 @@ Output: - [ ] allow fields to be missing in the target struct * [ ] port to more programming languages + + +[strange limitations]: https://stackoverflow.com/a/73745980/229154