diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e0d980..977869b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,6 @@ # CHANGELOG +2023-01-03 v0.6.1 +* By trimming off quotation marks after the whitespace trim, we allow users to wrap their strings in quotation marks in order to keep any intentional leading or trailing whitespace - useful for bulleted lists, code blocks etc. 2022-11-27 v0.6 * Fixed doesn't show the heading when calling just a section diff --git a/README.md b/README.md index 1919c26..b7f929b 100644 --- a/README.md +++ b/README.md @@ -5,4 +5,4 @@ Plugin for [DokuWiki](https://www.dokuwiki.org), available at [plugin: templater Author : Jonathan Arkell Updater : Daniel Dias Rodrigues - Current Version : 0.6 (2022-11-27) + Current Version : 0.6.1 (2023-01-03) diff --git a/templater/plugin.info.txt b/templater/plugin.info.txt index f7ac275..74248fe 100644 --- a/templater/plugin.info.txt +++ b/templater/plugin.info.txt @@ -2,7 +2,7 @@ base templater author Jonathan Arkell (updated by Daniel Dias Rodrigues) email jonnay@jonnay.net -date 2022-11-27 +date 2023-01-03 name Templater Plugin desc Displays a wiki page (or a section thereof) within another, with user selectable replacements. url https://www.dokuwiki.org/plugin:templater diff --git a/templater/syntax.php b/templater/syntax.php index e4039aa..1ed84ad 100644 --- a/templater/syntax.php +++ b/templater/syntax.php @@ -21,7 +21,7 @@ * with bugfix from Ximin Luo * Daniel Dias Rodrigues (aka Nerun) * with one bugfix from jack126guy - * @version 0.6 (2022-11-27) + * @version 0.6.1 (2023-01-03) */ define('BEGIN_REPLACE_DELIMITER', '@'); @@ -44,7 +44,7 @@ function getInfo() { return array( 'author' => 'Jonathan Arkell (updated by Daniel Dias Rodrigues)', 'email' => 'jonnay@jonnay.net', - 'date' => '2022-11-27', + 'date' => '2023-01-03', 'name' => 'Templater Plugin', 'desc' => 'Displays a wiki page (or a section thereof) within another, with user selectable replacements', 'url' => 'http://www.dokuwiki.org/plugin:templater',