mirror of
https://github.com/laurent22/joplin.git
synced 2026-06-18 20:16:34 +02:00
Clipper: Fixes #1783: Fixed importing tables that contain pipes
This commit is contained in:
@@ -39,7 +39,7 @@ describe('HtmlToMd', function() {
|
||||
const htmlPath = basePath + '/' + htmlFilename;
|
||||
const mdPath = basePath + '/' + filename(htmlFilename) + '.md';
|
||||
|
||||
// if (htmlFilename !== 'mathjax_block.html') continue;
|
||||
// if (htmlFilename !== 'table_with_pipe.html') continue;
|
||||
|
||||
const htmlToMdOptions = {};
|
||||
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
<table>
|
||||
<tr><td>Line with | pipe</td><td>No pipe</td></tr>
|
||||
<tr><td>One</td><td>Two</td></tr>
|
||||
</table>
|
||||
@@ -0,0 +1,4 @@
|
||||
| | |
|
||||
| --- | --- |
|
||||
| Line with \| pipe | No pipe |
|
||||
| One | Two |
|
||||
Reference in New Issue
Block a user