jsonnet icon indicating copy to clipboard operation
jsonnet copied to clipboard

Jsonnet - The data templating language

Results 210 jsonnet issues
Sort by recently updated
recently updated
newest added

Add std.groupBy function in standard library. go-jsonnet: https://github.com/google/go-jsonnet/pull/726

I'm about to integrate `libjsonnet++` in a C++ project that should support processing of jsonnet files. The project is CMake based, so the projects CMakeLists.txt looks somewhat like that: ```cmake...

Is it possible to use reflection to access function arguments? Ideally I would like to reconstruct a string of jsonnet code that I would use to call the function. My...

enhancement

The Abstract Syntax seems to be missing a derivation rule for "{}", which should be a valid input. The rules `expr -> { objinside }` and `objinside -> member {...

It would be very nice to have headers be linkable so I can refer to specific things within the tutorial or reference pages!

Rebased #665: > Introduces 5 new built-in methods to the stdlib: > - `regexFullMatch(pattern, str)` -- Full match regex > - `regexPartialMatch(pattern, str)` -- Partial match regex > - `regexQuoteMeta(str)`...

If you have a stricter linker, who does not like unresolved symbols in a shared library (which is always a bad idea), the build will fail when generating libjsonnet++.so.0.15.0. Possible...

bug

Add documentation for `std.match` function in standard library go-jsonnet PR: https://github.com/google/go-jsonnet/pull/715

Implement `std.parseXmlJsonml` documentation. This function is go-only function Currently this PR is using https://github.com/google/jsonnet/pull/1085 as base to reuse golang only error code and should be merged after this. go-jsonnet PR:...

Add doc for `std.parseCsvWithHeader` and `std.manifestCsv` go-jsonnet PR: https://github.com/google/go-jsonnet/pull/701