diff options
author | Marcel Ribeiro-Dantas <ribeirodantasdm@gmail.com> | 2024-06-21 02:11:51 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-21 02:11:51 -0300 |
commit | 30edebae889893e1b657b1a2326576450f2f56d4 (patch) | |
tree | 3af5406b8c1e08c9ffac81a9db86cb7b62dffbf6 /jq.html.markdown | |
parent | 7611e1f1904619b58333a8c564500d9cb2b584d9 (diff) | |
parent | 790a78e3cf1ec8610699ed34255d459f84a92a18 (diff) |
Merge pull request #4969 from verhovsky/remove-bare-links
Remove bare links
Diffstat (limited to 'jq.html.markdown')
-rw-r--r-- | jq.html.markdown | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/jq.html.markdown b/jq.html.markdown index dded34cb..bfcc9ecc 100644 --- a/jq.html.markdown +++ b/jq.html.markdown @@ -902,9 +902,9 @@ jq -n ' # - `def f($a; $b): ...;` is a shorthand for: `def f(a; b): a as $a | b as $b | ...` ``` - ## Further Reading -- https://stedolan.github.io/jq/manual/ -- https://github.com/stedolan/jq/wiki/jq-Language-Description -- https://github.com/stedolan/jq/wiki/Cookbook -- https://github.com/stedolan/jq/blob/master/src/builtin.jq + +- [jq Manual](https://jqlang.github.io/jq/manual/) +- [Language Description](https://github.com/jqlang/jq/wiki/jq-Language-Description) +- [Cookbook](https://github.com/jqlang/jq/wiki/Cookbook) +- [builtin.jq](https://github.com/jqlang/jq/blob/master/src/builtin.jq) |