Using the example in the wiki docs, and the JSFiddle link as a demo, the example Table code does not render at all.
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.
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 :/
@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
Most helpful comment
As it stated in the documentation:
So you need to turn on the option
tables;