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-05-02")
+set (My_Project_Revised_Date "2017-05-24")
set (My_Project_Version_Major 6)
set (My_Project_Version_Minor 0)
-set (My_Project_Version_Patch 5)
+set (My_Project_Version_Patch 6)
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>
<meta:user-defined meta:name="author">Fletcher T. Penney</meta:user-defined>
- <meta:user-defined meta:name="date">2017-03-28</meta:user-defined>
+ <meta:user-defined meta:name="date">2017-05-24</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–05–24 - v 6.0.6:</text:p>
+
+<text:list text:style-name="L1">
+<text:list-item>
+<text:p text:style-name="P1">
+ADDED: Add function for accessing library version</text:p></text:list-item>
+
+<text:list-item>
+<text:p text:style-name="P1">
+ADDED: Restructure superscript</text:p></text:list-item>
+
+<text:list-item>
+<text:p text:style-name="P1">
+CHANGED: Continue to refactor core API routines for clarity and flexibility</text:p></text:list-item>
+
+<text:list-item>
+<text:p text:style-name="P1">
+CHANGED: Don't strip list markers from nested list items</text:p></text:list-item>
+
+<text:list-item>
+<text:p text:style-name="P1">
+CHANGED: Extended ASCII support interferes with UTF–8 support – disable it</text:p></text:list-item>
+
+<text:list-item>
+<text:p text:style-name="P1">
+CHANGED: Fix style</text:p></text:list-item>
+
+<text:list-item>
+<text:p text:style-name="P1">
+CHANGED: Preserve closing Heading markers</text:p></text:list-item>
+
+<text:list-item>
+<text:p text:style-name="P1">
+CHANGED: Refactor CriticMarkup basic commands to be part of libMultiMarkdown.h</text:p></text:list-item>
+
+<text:list-item>
+<text:p text:style-name="P1">
+CHANGED: Refactor code for more consistent API naming in libMultiMarkdown.h; Add functionality to list metadata keys and extract specific metadata values</text:p></text:list-item>
+
+<text:list-item>
+<text:p text:style-name="P1">
+CHANGED: Refactor transclude_source to be part of main libMultiMarkdown.h</text:p></text:list-item>
+
+<text:list-item>
+<text:p text:style-name="P1">
+CHANGED: Restructure strong/emph to a nested structure</text:p></text:list-item>
+
+<text:list-item>
+<text:p text:style-name="P1">
+FIXED: Adjust CMake configuration for Linux to allow building with libcurl</text:p></text:list-item>
+
+<text:list-item>
+<text:p text:style-name="P1">
+FIXED: Fix regression in EPUB code refactoring</text:p></text:list-item>
+
+<text:list-item>
+<text:p text:style-name="P1">
+FIXED: Need separate check for escaped characters in CriticMarkup parsing</text:p></text:list-item>
+
+<text:list-item>
+<text:p text:style-name="P1">
+FIXED: compiling with older gcc and used c standard</text:p></text:list-item>
+
+<text:list-item>
+<text:p text:style-name="P1">
+Merge pull request #61 from silvio/gcc–build–fix</text:p></text:list-item>
+
+<text:list-item>
+<text:p text:style-name="P1">
+Merge pull request #64 from jasedit/feat/add<text:span text:style-name="MMD-Italic">version</text:span>function</text:p></text:list-item>
+
+<text:list-item>
+<text:p text:style-name="P1">
+NOTE: Remove unnecessary includes</text:p></text:list-item>
+
+<text:list-item>
+<text:p text:style-name="P1">
+UPDATED: Update libMultiMarkdown.h</text:p></text:list-item>
+
+<text:list-item>
+<text:p text:style-name="Standard">UPDATED: Update mmd.c</text:p></text:list-item>
+
+</text:list></text:list-item>
+
<text:list-item>
<text:p text:style-name="Standard">2017–05–02 - v 6.0.5:</text:p>
CHANGED: Recompile scanners using –8 flag</text:p></text:list-item>
<text:list-item>
-<text:p text:style-name="Standard">FIXED: Don’t separate out 'à'</text:p></text:list-item>
+<text:p text:style-name="Standard">FIXED: Don’t separate out ‘à’</text:p></text:list-item>
</text:list></text:list-item>
<meta charset="utf-8"/>
<title>MultiMarkdown v6 Development Notes</title>
<meta name="author" content="Fletcher T. Penney"/>
- <meta name="date" content="2017-03-28"/>
+ <meta name="date" content="2017-05-24"/>
<meta name="uuid" content="dd2d8e76-dc2d-416d-9acd-5395d20871c2"/>
</head>
<body>
<h3 id="changelog">Changelog </h3>
<ul>
+<li><p>2017–05–24 - v 6.0.6:</p>
+
+<ul>
+<li>ADDED: Add function for accessing library version</li>
+<li>ADDED: Restructure superscript</li>
+<li>CHANGED: Continue to refactor core API routines for clarity and flexibility</li>
+<li>CHANGED: Don't strip list markers from nested list items</li>
+<li>CHANGED: Extended ASCII support interferes with UTF–8 support – disable it</li>
+<li>CHANGED: Fix style</li>
+<li>CHANGED: Preserve closing Heading markers</li>
+<li>CHANGED: Refactor CriticMarkup basic commands to be part of libMultiMarkdown.h</li>
+<li>CHANGED: Refactor code for more consistent API naming in libMultiMarkdown.h; Add functionality to list metadata keys and extract specific metadata values</li>
+<li>CHANGED: Refactor transclude_source to be part of main libMultiMarkdown.h</li>
+<li>CHANGED: Restructure strong/emph to a nested structure</li>
+<li>FIXED: Adjust CMake configuration for Linux to allow building with libcurl</li>
+<li>FIXED: Fix regression in EPUB code refactoring</li>
+<li>FIXED: Need separate check for escaped characters in CriticMarkup parsing</li>
+<li>FIXED: compiling with older gcc and used c standard</li>
+<li>Merge pull request #61 from silvio/gcc–build–fix</li>
+<li>Merge pull request #64 from jasedit/feat/add<em>version</em>function</li>
+<li>NOTE: Remove unnecessary includes</li>
+<li>UPDATED: Update libMultiMarkdown.h</li>
+<li>UPDATED: Update mmd.c</li>
+</ul></li>
<li><p>2017–05–02 - v 6.0.5:</p>
<ul>
<li>ADDED: Script for updating re2c and lemon files</li>
<li>CHANGED: Recompile lexer using –8 flag</li>
<li>CHANGED: Recompile scanners using –8 flag</li>
-<li>FIXED: Don’t separate out 'à'</li>
+<li>FIXED: Don’t separate out ‘à’</li>
</ul></li>
<li><p>2017–03–29 - v 6.0.2:</p>
Title: MultiMarkdown v6 Development Notes
Author: Fletcher T. Penney
-Date: 2017-03-28
+Date: 2017-05-24
LaTeX Config: tufte-handout
Base Header Level: 3
uuid: dd2d8e76-dc2d-416d-9acd-5395d20871c2
# Changelog #
+* 2017-05-24 - v 6.0.6:
+
+ * ADDED: Add function for accessing library version
+ * ADDED: Restructure superscript
+ * CHANGED: Continue to refactor core API routines for clarity and flexibility
+ * CHANGED: Don't strip list markers from nested list items
+ * CHANGED: Extended ASCII support interferes with UTF-8 support -- disable it
+ * CHANGED: Fix style
+ * CHANGED: Preserve closing Heading markers
+ * CHANGED: Refactor CriticMarkup basic commands to be part of libMultiMarkdown.h
+ * CHANGED: Refactor code for more consistent API naming in libMultiMarkdown.h; Add functionality to list metadata keys and extract specific metadata values
+ * CHANGED: Refactor transclude_source to be part of main libMultiMarkdown.h
+ * CHANGED: Restructure strong/emph to a nested structure
+ * FIXED: Adjust CMake configuration for Linux to allow building with libcurl
+ * FIXED: Fix regression in EPUB code refactoring
+ * FIXED: Need separate check for escaped characters in CriticMarkup parsing
+ * FIXED: compiling with older gcc and used c standard
+ * Merge pull request #61 from silvio/gcc-build-fix
+ * Merge pull request #64 from jasedit/feat/add_version_function
+ * NOTE: Remove unnecessary includes
+ * UPDATED: Update libMultiMarkdown.h
+ * UPDATED: Update mmd.c
+
+
* 2017-05-02 - v 6.0.5:
* ADDED: Add back support for BibTeX bibliography entries (address #56)
| ---------- | ------------------------- |
| Title: | MultiMarkdown |
| Author: | Fletcher T. Penney |
-| Date: | 2017-05-02 |
+| Date: | 2017-05-24 |
| Copyright: | Copyright © 2016 - 2017 Fletcher T. Penney. |
-| Version: | 6.0.5 |
+| Version: | 6.0.6 |
## An Announcement! ##