change json2tsv text + sync - www.codemadness.org - www.codemadness.org saait content files
 (HTM) git clone git://git.codemadness.org/www.codemadness.org
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 473eb033ba2b2c92fbe81ae0d99048fee3bd4789
 (DIR) parent e32d9d36d64d0850e8ff256f34c37d2287952cce
 (HTM) Author: Hiltjo Posthuma <hiltjo@codemadness.org>
       Date:   Sat, 25 Sep 2021 13:31:34 +0200
       
       change json2tsv text + sync
       
       Diffstat:
         M config.cfg                          |       2 +-
         M output/atom.xml                     |       4 ++--
         M output/atom_content.xml             |      11 ++++++-----
         M output/json2tsv.html                |       7 ++++---
         M output/json2tsv.md                  |       6 ++++--
         M output/phlog/json2tsv               |       8 +++++---
         M output/rss_content.xml              |       7 ++++---
         M output/sitemap.xml                  |       2 +-
         M pages/json2tsv.cfg                  |       2 +-
         M pages/json2tsv.md                   |       6 ++++--
       
       10 files changed, 32 insertions(+), 23 deletions(-)
       ---
 (DIR) diff --git a/config.cfg b/config.cfg
       @@ -1,5 +1,5 @@
        # last updated the site.
       -siteupdated = 2021-09-24
       +siteupdated = 2021-09-25
        
        sitetitle = Codemadness
        siteurl = https://www.codemadness.org
 (DIR) diff --git a/output/atom.xml b/output/atom.xml
       @@ -2,7 +2,7 @@
        <feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
                <title type="text">Codemadness</title>
                <subtitle type="text">blog with various projects and articles about computer-related things</subtitle>
       -        <updated>2021-09-24T00:00:00Z</updated>
       +        <updated>2021-09-25T00:00:00Z</updated>
                <link rel="alternate" type="text/html" href="https://www.codemadness.org" />
                <id>https://www.codemadness.org/atom.xml</id>
                <link rel="self" type="application/atom+xml" href="https://www.codemadness.org/atom.xml" />
       @@ -34,7 +34,7 @@
                <title type="text">json2tsv: a JSON to TSV converter</title>
                <link rel="alternate" type="text/html" href="https://www.codemadness.org/json2tsv.html" />
                <id>https://www.codemadness.org/json2tsv.html</id>
       -        <updated>2021-09-24T00:00:00Z</updated>
       +        <updated>2021-09-25T00:00:00Z</updated>
                <published>2019-10-13T00:00:00Z</published>
                <author>
                        <name>hiltjo</name>
 (DIR) diff --git a/output/atom_content.xml b/output/atom_content.xml
       @@ -2,7 +2,7 @@
        <feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
                <title type="text">Codemadness</title>
                <subtitle type="text">blog with various projects and articles about computer-related things</subtitle>
       -        <updated>2021-09-24T00:00:00Z</updated>
       +        <updated>2021-09-25T00:00:00Z</updated>
                <link rel="alternate" type="text/html" href="https://www.codemadness.org" />
                <id>https://www.codemadness.org/atom.xml</id>
                <link rel="self" type="application/atom+xml" href="https://www.codemadness.org/atom.xml" />
       @@ -206,7 +206,7 @@ block empty or certain User-Agents.</p>
                <title type="text">json2tsv: a JSON to TSV converter</title>
                <link rel="alternate" type="text/html" href="https://www.codemadness.org/json2tsv.html" />
                <id>https://www.codemadness.org/json2tsv.html</id>
       -        <updated>2021-09-24T00:00:00Z</updated>
       +        <updated>2021-09-25T00:00:00Z</updated>
                <published>2019-10-13T00:00:00Z</published>
                <author>
                        <name>hiltjo</name>
       @@ -214,9 +214,10 @@ block empty or certain User-Agents.</p>
                </author>
                <summary type="text">json2tsv: a JSON to TAB-Separated Value converter</summary>
                <content type="html"><![CDATA[<h1>json2tsv: a JSON to TSV converter</h1>
       -        <p><strong>Last modification on </strong> <time>2021-09-24</time></p>
       -        <p>json2tsv reads JSON data from stdin. It outputs each JSON type to a
       -TAB-Separated Value format per line.</p>
       +        <p><strong>Last modification on </strong> <time>2021-09-25</time></p>
       +        <p>Convert JSON to TSV or separated output.</p>
       +<p>json2tsv reads JSON data from stdin.  It outputs each JSON type to a TAB-
       +Separated Value format per line by default.</p>
        <h2>TAB-Separated Value format</h2>
        <p>The output format per line is:</p>
        <pre><code>nodename&lt;TAB&gt;type&lt;TAB&gt;value&lt;LF&gt;
 (DIR) diff --git a/output/json2tsv.html b/output/json2tsv.html
       @@ -41,12 +41,13 @@
        <header>
                <h1>json2tsv: a JSON to TSV converter</h1>
                <p>
       -        <strong>Last modification on </strong> <time>2021-09-24</time>
       +        <strong>Last modification on </strong> <time>2021-09-25</time>
                </p>
        </header>
        
       -<p>json2tsv reads JSON data from stdin. It outputs each JSON type to a
       -TAB-Separated Value format per line.</p>
       +<p>Convert JSON to TSV or separated output.</p>
       +<p>json2tsv reads JSON data from stdin.  It outputs each JSON type to a TAB-
       +Separated Value format per line by default.</p>
        <h2>TAB-Separated Value format</h2>
        <p>The output format per line is:</p>
        <pre><code>nodename&lt;TAB&gt;type&lt;TAB&gt;value&lt;LF&gt;
 (DIR) diff --git a/output/json2tsv.md b/output/json2tsv.md
       @@ -1,5 +1,7 @@
       -json2tsv reads JSON data from stdin. It outputs each JSON type to a
       -TAB-Separated Value format per line.
       +Convert JSON to TSV or separated output.
       +
       +json2tsv reads JSON data from stdin.  It outputs each JSON type to a TAB-
       +Separated Value format per line by default.
        
        
        ## TAB-Separated Value format
 (DIR) diff --git a/output/phlog/json2tsv b/output/phlog/json2tsv
       @@ -3,10 +3,12 @@ i                codemadness.org        70
        i                codemadness.org        70
        i# json2tsv: a JSON to TSV converter                codemadness.org        70
        i                codemadness.org        70
       -iLast modification on 2021-09-24                codemadness.org        70
       +iLast modification on 2021-09-25                codemadness.org        70
        i                codemadness.org        70
       -ijson2tsv reads JSON data from stdin. It outputs each JSON type to a                codemadness.org        70
       -iTAB-Separated Value format per line.                codemadness.org        70
       +iConvert JSON to TSV or separated output.                codemadness.org        70
       +i                codemadness.org        70
       +ijson2tsv reads JSON data from stdin.  It outputs each JSON type to a TAB-                codemadness.org        70
       +iSeparated Value format per line by default.                codemadness.org        70
        i                codemadness.org        70
        i                codemadness.org        70
        i## TAB-Separated Value format                codemadness.org        70
 (DIR) diff --git a/output/rss_content.xml b/output/rss_content.xml
       @@ -199,9 +199,10 @@ block empty or certain User-Agents.</p>
                <dc:date>2019-10-13T00:00:00Z</dc:date>
                <author>hiltjo</author>
                <description><![CDATA[<h1>json2tsv: a JSON to TSV converter</h1>
       -        <p><strong>Last modification on </strong> <time>2021-09-24</time></p>
       -        <p>json2tsv reads JSON data from stdin. It outputs each JSON type to a
       -TAB-Separated Value format per line.</p>
       +        <p><strong>Last modification on </strong> <time>2021-09-25</time></p>
       +        <p>Convert JSON to TSV or separated output.</p>
       +<p>json2tsv reads JSON data from stdin.  It outputs each JSON type to a TAB-
       +Separated Value format per line by default.</p>
        <h2>TAB-Separated Value format</h2>
        <p>The output format per line is:</p>
        <pre><code>nodename&lt;TAB&gt;type&lt;TAB&gt;value&lt;LF&gt;
 (DIR) diff --git a/output/sitemap.xml b/output/sitemap.xml
       @@ -10,7 +10,7 @@
        </url>
        <url>
                <loc>https://www.codemadness.org/json2tsv.html</loc>
       -        <lastmod>2021-09-24</lastmod>
       +        <lastmod>2021-09-25</lastmod>
        </url>
        <url>
                <loc>https://www.codemadness.org/openbsd-autoinstall.html</loc>
 (DIR) diff --git a/pages/json2tsv.cfg b/pages/json2tsv.cfg
       @@ -3,4 +3,4 @@ id = json2tsv
        description = json2tsv: a JSON to TAB-Separated Value converter
        keywords = json2tsv, JSON, tsv, TAB-Separated Value Format
        created = 2019-10-13
       -updated = 2021-09-24
       +updated = 2021-09-25
 (DIR) diff --git a/pages/json2tsv.md b/pages/json2tsv.md
       @@ -1,5 +1,7 @@
       -json2tsv reads JSON data from stdin. It outputs each JSON type to a
       -TAB-Separated Value format per line.
       +Convert JSON to TSV or separated output.
       +
       +json2tsv reads JSON data from stdin.  It outputs each JSON type to a TAB-
       +Separated Value format per line by default.
        
        
        ## TAB-Separated Value format