set (My_Project_Title "MultiMarkdown")
set (My_Project_Description "Lightweight markup processor to produce HTML, LaTeX, and more.")
set (My_Project_Author "Fletcher T. Penney")
-set (My_Project_Revised_Date "2017-09-04")
+set (My_Project_Revised_Date "2017-10-13")
set (My_Project_Version_Major 6)
set (My_Project_Version_Minor 2)
-set (My_Project_Version_Patch 1)
+set (My_Project_Version_Patch 2)
set (My_Project_Version "${My_Project_Version_Major}.${My_Project_Version_Minor}.${My_Project_Version_Patch}")
<office:meta>
<dc:title>MultiMarkdown v6 Development Notes</dc:title>
<dc:creator>Fletcher T. Penney</dc:creator>
- <meta:user-defined meta:name="date">2017-09-04</meta:user-defined>
+ <meta:user-defined meta:name="date">2017-10-13</meta:user-defined>
<meta:user-defined meta:name="uuid">dd2d8e76-dc2d-416d-9acd-5395d20871c2</meta:user-defined>
</office:meta>
<office:body>
<text:h text:outline-level="3"><text:bookmark text:name="changelog"/>Changelog </text:h>
<text:list text:style-name="L1">
+<text:list-item>
+<text:p text:style-name="Standard">2017–10–13 - v 6.2.2.:</text:p>
+
+<text:list text:style-name="L1">
+<text:list-item>
+<text:p text:style-name="P1">
+ADDED: Add support for tables without header; test for table with multiple header rows</text:p></text:list-item>
+
+<text:list-item>
+<text:p text:style-name="P1">
+CHANGED: Remove dead line of code</text:p></text:list-item>
+
+<text:list-item>
+<text:p text:style-name="P1">
+FIXED: Add NULL check on my strdup functions</text:p></text:list-item>
+
+<text:list-item>
+<text:p text:style-name="P1">
+FIXED: Fix NULL dereference in abbreviation search</text:p></text:list-item>
+
+<text:list-item>
+<text:p text:style-name="P1">
+FIXED: Fix issue with libCurl on some systems (Thanks, Brad!)</text:p></text:list-item>
+
+<text:list-item>
+<text:p text:style-name="P1">
+FIXED: Fix math markers in code spans</text:p></text:list-item>
+
+<text:list-item>
+<text:p text:style-name="P1">
+FIXED: Fix potential dereference in table handling</text:p></text:list-item>
+
+<text:list-item>
+<text:p text:style-name="P1">
+FIXED: Fix use of uninitialized variable</text:p></text:list-item>
+
+<text:list-item>
+<text:p text:style-name="P1">
+FIXED: Improve consistency of math token handling</text:p></text:list-item>
+
+<text:list-item>
+<text:p text:style-name="P1">
+FIXED: Relax table separator line rules to allow missing final pipe</text:p></text:list-item>
+
+<text:list-item>
+<text:p text:style-name="P1">
+UPDATED: Add additional asset storage option</text:p></text:list-item>
+
+<text:list-item>
+<text:p text:style-name="P1">
+UPDATED: Add note about tables in MMD-6 to Quick Start Guide</text:p></text:list-item>
+
+<text:list-item>
+<text:p text:style-name="P1">
+UPDATED: Fix readme</text:p></text:list-item>
+
+<text:list-item>
+<text:p text:style-name="P1">
+UPDATED: Update QuickStart Guide</text:p></text:list-item>
+
+<text:list-item>
+<text:p text:style-name="Standard">UPDATED: Update readme</text:p></text:list-item>
+
+</text:list></text:list-item>
+
<text:list-item>
<text:p text:style-name="Standard">2017–09–04 - v 6.2.1:</text:p>
<meta charset="utf-8"/>
<title>MultiMarkdown v6 Development Notes</title>
<meta name="author" content="Fletcher T. Penney"/>
- <meta name="date" content="2017-09-04"/>
+ <meta name="date" content="2017-10-13"/>
<meta name="uuid" content="dd2d8e76-dc2d-416d-9acd-5395d20871c2"/>
</head>
<body>
<h3 id="changelog">Changelog </h3>
<ul>
+<li><p>2017–10–13 - v 6.2.2.:</p>
+
+<ul>
+<li>ADDED: Add support for tables without header; test for table with multiple header rows</li>
+<li>CHANGED: Remove dead line of code</li>
+<li>FIXED: Add NULL check on my strdup functions</li>
+<li>FIXED: Fix NULL dereference in abbreviation search</li>
+<li>FIXED: Fix issue with libCurl on some systems (Thanks, Brad!)</li>
+<li>FIXED: Fix math markers in code spans</li>
+<li>FIXED: Fix potential dereference in table handling</li>
+<li>FIXED: Fix use of uninitialized variable</li>
+<li>FIXED: Improve consistency of math token handling</li>
+<li>FIXED: Relax table separator line rules to allow missing final pipe</li>
+<li>UPDATED: Add additional asset storage option</li>
+<li>UPDATED: Add note about tables in <abbr title="MultiMarkdown">MMD</abbr>-6 to Quick Start Guide</li>
+<li>UPDATED: Fix readme</li>
+<li>UPDATED: Update QuickStart Guide</li>
+<li>UPDATED: Update readme</li>
+</ul></li>
<li><p>2017–09–04 - v 6.2.1:</p>
<ul>
Title: MultiMarkdown v6 Development Notes
Author: Fletcher T. Penney
-Date: 2017-09-04
+Date: 2017-10-13
LaTeX Config: tufte-handout
Base Header Level: 3
uuid: dd2d8e76-dc2d-416d-9acd-5395d20871c2
# Changelog #
+* 2017-10-13 - v 6.2.2.:
+
+ * ADDED: Add support for tables without header; test for table with multiple header rows
+ * CHANGED: Remove dead line of code
+ * FIXED: Add NULL check on my strdup functions
+ * FIXED: Fix NULL dereference in abbreviation search
+ * FIXED: Fix issue with libCurl on some systems (Thanks, Brad!)
+ * FIXED: Fix math markers in code spans
+ * FIXED: Fix potential dereference in table handling
+ * FIXED: Fix use of uninitialized variable
+ * FIXED: Improve consistency of math token handling
+ * FIXED: Relax table separator line rules to allow missing final pipe
+ * UPDATED: Add additional asset storage option
+ * UPDATED: Add note about tables in MMD-6 to Quick Start Guide
+ * UPDATED: Fix readme
+ * UPDATED: Update QuickStart Guide
+ * UPDATED: Update readme
+
+
* 2017-09-04 - v 6.2.1:
* ADDED: Add Hebrew to command line help
<office:meta>
<dc:title>MultiMarkdown v6 Quick Start Guide</dc:title>
<dc:creator>Fletcher T. Penney</dc:creator>
- <meta:user-defined meta:name="version">6.1.0</meta:user-defined>
+ <meta:user-defined meta:name="version">6.2.2</meta:user-defined>
<meta:user-defined meta:name="uuid">0d6313fa-9135-477e-9c14-7d62c1977833</meta:user-defined>
</office:meta>
<office:body>
<text:h text:outline-level="3"><text:bookmark text:name="introduction"/>Introduction </text:h>
-<text:p text:style-name="Standard">Version: 6.1.0</text:p>
+<text:p text:style-name="Standard">Version: 6.2.2</text:p>
<text:p text:style-name="Standard">This document serves as a description of MultiMarkdown (MMD) v6, as well as a sample
document to demonstrate the various features. Specifically, differences from
<meta charset="utf-8"/>
<title>MultiMarkdown v6 Quick Start Guide</title>
<meta name="author" content="Fletcher T. Penney"/>
- <meta name="version" content="6.1.0"/>
+ <meta name="version" content="6.2.2"/>
<meta name="uuid" content="0d6313fa-9135-477e-9c14-7d62c1977833"/>
</head>
<body>
<h3 id="introduction">Introduction </h3>
-<p>Version: 6.1.0</p>
+<p>Version: 6.2.2</p>
<p>This document serves as a description of MultiMarkdown (<abbr title="MultiMarkdown">MMD</abbr>) v6, as well as a sample
document to demonstrate the various features. Specifically, differences from
Title: MultiMarkdown v6 Quick Start Guide
Author: Fletcher T. Penney
-Version: 6.1.0
+Version: 6.2.2
LaTeX Config: tufte-handout
Base Header Level: 3
uuid: 0d6313fa-9135-477e-9c14-7d62c1977833
| ---------- | ------------------------- |
| Title: | MultiMarkdown |
| Author: | Fletcher T. Penney |
-| Date: | 2017-09-04 |
+| Date: | 2017-10-13 |
| Copyright: | Copyright © 2016 - 2017 Fletcher T. Penney. |
-| Version: | 6.2.1 |
+| Version: | 6.2.2 |
master branch: [](https://travis-ci.org/fletcher/MultiMarkdown-6)
develop branch: [](https://travis-ci.org/fletcher/MultiMarkdown-6)