Skip to content

Commit ea6c7f3

Browse files
committed
Cleanup project removing old Table Editor code.
1 parent bdb7a44 commit ea6c7f3

11 files changed

Lines changed: 28 additions & 2247 deletions

File tree

Changelog.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,12 @@
44
[![Chocolatey](https://img.shields.io/chocolatey/dt/markdownmonster.svg)](https://chocolatey.org/packages/MarkdownMonster)
55
[![Web Site](https://img.shields.io/badge/Markdown_Monster-WebSite-blue.svg)](https://markdownmonster.west-wind.com)
66

7-
### 1.26.6
7+
### 1.26.10
88
<small>ongoing release</small>
99

10+
* **Rewritten Table Editor**
11+
Completely revamped the Table Editor to better support larger tables and quicker editing support. Editing uses the current theme as view, there's an optional previewer, support for sorting and alignment, and much more.
12+
1013
* **Preview Sync Improvements**
1114
Refactored some of the logistics in Preview Sync which should improve responsiveness of preview refreshes. There should now be fewer odd instances where preview is not refreshing automatically. Also updated `Left-ctrl` which forces an immediate refresh, spellcheck and stats update.
1215

MarkdownMonster/Controls/ContextMenus/EditorContextMenu.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -644,7 +644,7 @@ private bool CheckForTable(string line, AcePosition pos)
644644
if (string.IsNullOrEmpty(mdTableHtml))
645645
return;
646646

647-
var parser = new TableParser();
647+
var parser = new TableParserHtml();
648648
var formatted = parser.FormatMarkdownTable(mdTableHtml);
649649
if (formatted == null)
650650
return;
@@ -689,7 +689,7 @@ private bool CheckForTable(string line, AcePosition pos)
689689
if (string.IsNullOrEmpty(mdTableHtml))
690690
return;
691691

692-
var parser = new TableParser();
692+
var parser = new TableParserHtml();
693693
var formatted = parser.FormatMarkdownTable(mdTableHtml);
694694
if (formatted == null)
695695
return;

0 commit comments

Comments
 (0)