URI:
       reword some documentation and typo fixes - extractjson - extract embedded JSON metadata from HTML pages
  HTML git clone git://git.codemadness.org/extractjson
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit ca6dbc057f9c2370476eef735ac8506c45a0958f
   DIR parent ad11115ba705c4c5f88f0679f2f807e4d0883970
  HTML Author: Hiltjo Posthuma <hiltjo@codemadness.org>
       Date:   Sun, 14 Aug 2022 12:07:18 +0200
       
       reword some documentation and typo fixes
       
       Diffstat:
         M README                              |       4 +++-
         M extractjson.1                       |       4 +++-
       
       2 files changed, 6 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/README b/README
       @@ -10,6 +10,8 @@ Example:
        
                curl -s https://www.imdb.com/title/tt0107048/ | extractjson | sed 1q | json2tsv
        
       -This extracts the JSON metadata from the IMDB page of Ground Hog data.
       +This extracts the JSON metadata from the IMDB page of the movie "Ground Hog Day".
        It uses the first embedded JSON fragment and pipes it to json2tsv.
        It can then be further processed using awk to get the relevant data.
       +
       +It can also be useful for extracting video streams from webpages.
   DIR diff --git a/extractjson.1 b/extractjson.1
       @@ -1,4 +1,4 @@
       -.Dd May 2, 2022
       +.Dd August 14, 2022
        .Dt EXTRACTJSON 1
        .Os
        .Sh NAME
       @@ -22,6 +22,8 @@ curl -s https://www.imdb.com/title/tt0107048/ | extractjson | sed 1q | json2tsv
        This extracts the JSON metadata from the IMDB page of the movie "Ground Hog Day".
        It uses the first embedded JSON fragment and pipes it to json2tsv.
        It can then be further processed using awk to get the relevant data.
       +.Pp
       +It can also be useful for extracting video streams from webpages.
        .Sh SEE ALSO
        .Xr curl 1 ,
        .Xr json2tsv 1