Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 

9 řádky
335 B

  1. #!/bin/bash
  2. # create json directory if not already present
  3. mkdir -p ../json
  4. # parse API README and print (minified) JSON to stdout, redirect to /json
  5. ./md2json.py ../README.md > ../json/entries.min.json
  6. # beautify the previously created JSON file, redirect to /json
  7. python -m json.tool ../json/entries.min.json > ../json/entries.json