jsonnet
jsonnet copied to clipboard
Jsonnet - The data templating language
I followed the steps from the website. I downloads the mingw64. I made the trouble with the patch. The method is right or wrong. How can I complete the installation.
I don't think there is any rush, I just wanted to get this idea out of my head. The proposal has two parts: 1) Forward and backward piping operators a...
I was looking to reference how to install jsonnet for colleagues using linux and found [an `apt` package for jsonnet](https://packages.ubuntu.com/search?keywords=jsonnet) that wasn't mentioned in the install instructions of this repo....
Currently the formatter will adjust indent, but where you break your lines IMHO has a bigger effect on style and readability. Python Black does this really well. Please consider adding...
Having a `std.parseUrl(str)` that returns a JSON object with "scheme", "host", "path", "query" and "fragment" fields would be useful for generating configurations where some applications accept parts of the URL...
This may just be a request for clarification, or else a bug/enhancement depending on the wisdom of jsonnet devs. Currently it's not allowed to do this: {} + { [if...
When using the `example3.jsonnet` found on the jsonnet.org home page: ```main.jsonnet local application = 'my-app'; local module = 'uwsgi_module'; local dir = '/var/www'; local permission = 644; { 'uwsgi.ini': std.manifestIni({...
I have a usecase in which I would love to have an equivalent to a javascript "minifier". That is, a tool which reads a jsonnet file, resolves imports, performs static...
How does one properly escape user inputs / data for insertion into contents of a tag? ```bash [scr@R9459YDHVQ]$ jsonnet -S -e 'function(vars) std.manifestXmlJsonml(["statement", vars.statement])' --tla-code vars='{"statement": "5 < 4"}' 5...
Just making sure someone saw this warning ``` /builddir/build/BUILD/jsonnet-0.19.1/core/vm.cpp:1665:16: warning: enumeration value 'binary' not handled in switch [-Wswitch] 1665 | switch (v.type()) { | ^ ```