Skip to content

Commit 0815a0e

Browse files
committed
v1.1 CSV-to-table enhancements
1 parent e46def0 commit 0815a0e

9 files changed

Lines changed: 773 additions & 69 deletions

File tree

changelog.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1078,6 +1078,14 @@
10781078
.highlight .gc{color:#999;background-color:#EAF2F5}
10791079
</style><title>changelog</title></head><body><article class="markdown-body"><h1 id="this-is-the-change-log-for-mdpre-markdown-preprocessor">This Is The Change Log For mdpre Markdown Preprocessor<a class="headerlink" href="#this-is-the-change-log-for-mdpre-markdown-preprocessor" title="Permanent link"></a></h1>
10801080
<h3 id="releases">Releases<a class="headerlink" href="#releases" title="Permanent link"></a></h3>
1081+
<h3 id="v11-8-june-2025">v1.1 - 8 June, 2025<a class="headerlink" href="#v11-8-june-2025" title="Permanent link"></a></h3>
1082+
<ul>
1083+
<li><strong>ENHANCED</strong> <a href="https://github.com/MartinPacker/mdpre/issues/35">Issue 35</a>: Allow <code>=colwidth</code> and <code>=colalign</code> multipliers shorthand</li>
1084+
<li><strong>ENHANCED</strong> <a href="https://github.com/MartinPacker/mdpre/issues/36">Issue 36</a>: Allow <code>=csv</code> to specify a dialect</li>
1085+
<li><strong>ENHANCED</strong> <a href="https://github.com/MartinPacker/mdpre/issues/37">Issue 37</a>: Add <code>=cellrule</code> for <code>=csv</code> to allow e.g. cell colouring via simple rules</li>
1086+
<li><strong>ENHANCED</strong> <a href="https://github.com/MartinPacker/mdpre/issues/39">Issue 39</a>: Add <code>=csvflow</code> to enable flowing of tables processed with <code>=csv</code></li>
1087+
<li><strong>FIXED</strong> <a href="https://github.com/MartinPacker/mdpre/issues/38">Issue 38</a>: <code>=def</code> line terminated with a space causes a crash</li>
1088+
</ul>
10811089
<h3 id="v10-25-may-2025">v1.0 - 25 May, 2025<a class="headerlink" href="#v10-25-may-2025" title="Permanent link"></a></h3>
10821090
<ul>
10831091
<li><strong>ENHANCED</strong> <a href="https://github.com/MartinPacker/mdpre/issues/1">Issue 1</a>: Filenames on command line</li>

changelog.log

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11

2-
mdpre Markdown Preprocessor v1.0 (25 May, 2025)
2+
mdpre Markdown Preprocessor v1.1 (8 June, 2025)
33
===============================================
44

5-
WARNING: overwriting output Markdown file!
6-
- opened changelog.md for writing
5+
- opened <stdout> for writing
76
Def makefile = file-3
87

9-
Def logfile = changelog.log
8+
Def logfile = stderr
109

11-
Def output = changelog.md
10+
Def output = stdout
1211

13-
Def input = changelog.mdp
12+
Def input = stdin
1413

1514
Def node = MacBookPro.domain_not_set.invalid
1615

@@ -30,27 +29,29 @@ Def python_implementation = CPython
3029

3130
Def processor = arm
3231

33-
Def mdpre_date = 25 May, 2025
32+
Def mdpre_date = 8 June, 2025
3433

35-
Def mdpre_level = 1.0
34+
Def mdpre_level = 1.1
3635

3736
Def userid = martinpacker
3837

39-
Def day = 25
38+
Def day = 8
4039

41-
Def month = May
40+
Def month = June
4241

4342
Def year = 2025
4443

45-
Def time = 15&colon;53
44+
Def time = 14&colon;48
4645

47-
Def date = 25 May&comma; 2025
46+
Def date = 8 June&comma; 2025
4847

4948
This Is The Change Log For mdpre Markdown Preprocessor
5049

5150
Table Of Contents - spec '2 2 Releases'
5251

5352
2 2 Releases
53+
..... ..... v1.1 - 8 June, 2025
54+
5455
..... ..... v1.0 - 25 May, 2025
5556

5657
..... ..... v0.9 - 17 May, 2025

changelog.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
### Releases
44

55

6+
### v1.1 - 8 June, 2025
7+
8+
* **ENHANCED** [Issue 35](https://github.com/MartinPacker/mdpre/issues/35): Allow `=colwidth` and `=colalign` multipliers shorthand
9+
* **ENHANCED** [Issue 36](https://github.com/MartinPacker/mdpre/issues/36): Allow `=csv` to specify a dialect
10+
* **ENHANCED** [Issue 37](https://github.com/MartinPacker/mdpre/issues/37): Add `=cellrule` for `=csv` to allow e.g. cell colouring via simple rules
11+
* **ENHANCED** [Issue 39](https://github.com/MartinPacker/mdpre/issues/39): Add `=csvflow` to enable flowing of tables processed with `=csv`
12+
* **FIXED** [Issue 38](https://github.com/MartinPacker/mdpre/issues/38): `=def` line terminated with a space causes a crash
13+
14+
615
### v1.0 - 25 May, 2025
716

817
* **ENHANCED** [Issue 1](https://github.com/MartinPacker/mdpre/issues/1): Filenames on command line

changelog.mdp

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
=toc 2 2 Releases
44

5+
### v1.1 - 8 June, 2025
6+
7+
* **ENHANCED** [Issue 35](https://github.com/MartinPacker/mdpre/issues/35): Allow `=colwidth` and `=colalign` multipliers shorthand
8+
* **ENHANCED** [Issue 36](https://github.com/MartinPacker/mdpre/issues/36): Allow `=csv` to specify a dialect
9+
* **ENHANCED** [Issue 37](https://github.com/MartinPacker/mdpre/issues/37): Add `=cellrule` for `=csv` to allow e.g. cell colouring via simple rules
10+
* **ENHANCED** [Issue 39](https://github.com/MartinPacker/mdpre/issues/39): Add `=csvflow` to enable flowing of tables processed with `=csv`
11+
* **FIXED** [Issue 38](https://github.com/MartinPacker/mdpre/issues/38): `=def` line terminated with a space causes a crash
12+
13+
514
### v1.0 - 25 May, 2025
615

716
* **ENHANCED** [Issue 1](https://github.com/MartinPacker/mdpre/issues/1): Filenames on command line

0 commit comments

Comments
 (0)