-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #76 from alxnbl/dev-130
Version 1.3.0 Enhancements - Avoid corrupted pages to bloc the export of the rest of the notebook (#75 #53 #42) - Add an execution report that display a warning if the export ended with error (#74) - Upgrade project Framework to DotNet 6 (#73) - Update Pandoc version to 2.19.2 - Better handling of errors on startup (#65) - Add a setting to to configure the max length of a page title before truncation (#72) Bug fixes - Option ProcessingOfPageHierarchy = HiearchyAsFolderTree do not work (#63)
- Loading branch information
Showing
22 changed files
with
5,278 additions
and
1,438 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/OneNoteMdExporter.IntTests/OneNoteMdExporter.IntTests.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace alxnbl.OneNoteMdExporter.Models | ||
{ | ||
public class NotebookExportResult | ||
{ | ||
/// <summary> | ||
/// Contains the errorCode of the error that cause a crash during the export. Null if export ended correctly. | ||
/// </summary> | ||
public string NoteBookExportErrorCode { get; set; } | ||
|
||
/// <summary> | ||
/// Contains the error message the an error that cause a crash during the export. Null if export ended correctly. | ||
/// </summary> | ||
public string NoteBookExportErrorMessage { get; set; } | ||
|
||
/// <summary> | ||
/// Number of pages that fail to be exported | ||
/// </summary> | ||
public int PagesOnError { get; set; } = 0; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace alxnbl.OneNoteMdExporter.Models | ||
{ | ||
public class SectionExportResult | ||
{ | ||
/// <summary> | ||
/// Number of pages that fail to be exported | ||
/// </summary> | ||
public int PagesOnError { get; set; } = 0; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.