Showdown: Table Markdown not Rendering

Created on 22 Sep 2017  路  7Comments  路  Source: showdownjs/showdown

Using the example in the wiki docs, and the JSFiddle link as a demo, the example Table code does not render at all.

Table Markdown

help wanted

Most helpful comment

As it stated in the documentation:

Tables aren't part of the core Markdown spec, but they are part of GFM and Showdown supports them by turning on the option tables.

So you need to turn on the option tables;

var converter = new showdown.Converter({tables: true});

All 7 comments

As it stated in the documentation:

Tables aren't part of the core Markdown spec, but they are part of GFM and Showdown supports them by turning on the option tables.

So you need to turn on the option tables;

var converter = new showdown.Converter({tables: true});

We're currently looking to improve showdown with automated tests in all browsers and a proper domain and webpage. If you like our work, please donate!! Your contribution will be greatly appreciated.

https://www.paypal.me/tiviesantos

Would be great to add proper indication in the wiki for example as to enable options in Showdown as I didn't find any of this except here :/

@t1m0t It's both in the wiki and in the README.md

@tivie 馃憤 I can't read. Thanks

This isn't working when going from html to markdown, even with the table option enabled.

For CLI : showdown makehtml -i file.md -o file.html --tables

Was this page helpful?
0 / 5 - 0 ratings

Related issues

KirkMunro picture KirkMunro  路  6Comments

jeud picture jeud  路  3Comments

xduseko picture xduseko  路  3Comments

oscarmorrison picture oscarmorrison  路  4Comments

buremba picture buremba  路  4Comments