1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-24 08:12:24 +02:00
joplin/packages/turndown-plugin-gfm
Matthew Moore 447e4638d1
add typecript information regarding turndown-plugin-gfm (#11153)
Co-authored-by: Henry Heino <46334387+personalizedrefrigerator@users.noreply.github.com>
2024-10-11 22:14:05 +01:00
..
config
src Clipper: handle tables with captions (#9910) 2024-02-12 14:44:50 +00:00
test
.gitignore
.travis.yml
build_for_test.sh
LICENSE
package.json Update dependency turndown to v7.2.0 (#11103) 2024-09-22 01:45:21 +01:00
publish.sh
README.md add typecript information regarding turndown-plugin-gfm (#11153) 2024-10-11 22:14:05 +01:00

turndown-plugin-gfm

A Turndown plugin which adds GitHub Flavored Markdown extensions.

This is a fork of the original turndown-plugin-gfm for use with Joplin. The changes are:

  • 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.
  • New: Handle colspan in TD tags
  • Fixed: Ensure there are no blank lines inside tables (due for example to an empty <tr> tag)
  • Fixed: Fixed importing tables that contain pipes.

Installation

npm:

npm install @joplin/turndown-plugin-gfm

Usage

// For Node.js
var TurndownService = require('@joplin/turndown')
var turndownPluginGfm = require('@joplin/turndown-plugin-gfm')

var gfm = turndownPluginGfm.gfm
var turndownService = new TurndownService()
turndownService.use(gfm)
var markdown = turndownService.turndown('<strike>Hello world!</strike>')

turndown-plugin-gfm is a suite of plugins which can be applied individually. The available plugins are as follows:

  • strikethrough (for converting <strike>, <s>, and <del> elements)
  • tables
  • taskListItems
  • gfm (which applies all of the above)

So for example, if you only wish to convert tables:

var tables = require('@joplin/turndown-plugin-gfm').tables
var turndownService = new TurndownService()
turndownService.use(tables)

Typescript

To use this in a typescript project, add this to a declarations.d.ts file, as described in https://www.npmjs.com/package/@joplin/turndown, and then add:

declare module "@joplin/turndown-plugin-gfm" {
  export const gfm: any;
  // Add other named exports if necessary
}

License

turndown-plugin-gfm is copyright © 2017+ Dom Christie and released under the MIT license.