Fixed: Ensure there are no blank lines inside tables

This commit is contained in:
Laurent Cozic 2018-05-22 00:15:21 +01:00
parent a2d99a266b
commit ecb6142c5a
2 changed files with 6 additions and 5 deletions

View File

@ -4,10 +4,11 @@ A [Turndown](https://github.com/domchristie/turndown) plugin which adds GitHub F
This is a fork of the original [turndown-plugin-gfm](https://github.com/domchristie/turndown-plugin-gfm) for use with [Joplin](https://github.com/laurent22/joplin). The changes are:
- Always render tables even if they don't have a header.
- Don't render the border of tables that contain other tables (frequent for websites that do the layout using tables). Only render the inner tables, if any, and if they also don't contain other tables.
- Replace newlines (`\n`) with `<br>` inside table cells so that multi-line content is displayed correctly as Markdown.
- Table cells are at least three characters long (padded with spaces) so that they render correctly in GFM-compliant renderers.
- New: Always render tables even if they don't have a header.
- New: Don't render the border of tables that contain other tables (frequent for websites that do the layout using tables). Only render the inner tables, if any, and if they also don't contain other tables.
- New: Replace newlines (`\n`) with `<br>` inside table cells so that multi-line content is displayed correctly as Markdown.
- New: Table cells are at least three characters long (padded with spaces) so that they render correctly in GFM-compliant renderers.
- Fixed: Ensure there are no blank lines inside tables (due for example to an empty `<tr>` tag)
## Installation

View File

@ -53,7 +53,7 @@ rules.table = {
}
// Ensure there are no blank lines
content = content.replace('\n\n', '\n')
content = content.replace(/\n+/g, '\n')
return '\n\n' + emptyHeader + content + '\n\n'
}
}