normalize wiki names

This commit is contained in:
root
2019-09-22 20:15:31 -04:00
parent c074e179aa
commit 90ffb90619
11 changed files with 7 additions and 38 deletions

20
wiki/source/json.md Normal file
View File

@@ -0,0 +1,20 @@
---
title: JSON
---
JSON is the "Javascript Object Notation", basically a file format for
data that's suitable for easy processing by most modern web-based tools.
Several tilde.club programs expose APIs essentially by spitting out
JSON as their output, including e.g. the list of recently updated home
pages at
http://tilde.club/~delfuego/tilde.24h.json
If you're looking to parse JSON from the command line with a minimum of
code, the `jq` program may be your thing. `jq` is a filter that takes
JSON on standard input and produces JSON on standard output. Along the
way in the middle you can do various standard sorts of file munging on
a field by field basis.
[Documentation for `jq` is in its manual.](http://stedolan.github.io/jq/manual/)