I want to be able to indent tables in a list, is there a way of doing this with showdown, if not does anyone know of any other markdown library where it is possible to indent tables in a list
It is possible to do it with showdown. Check the demo here
Here's also a snippet showing how to do it.
var conv = new showdown.Converter({tables: true});
var html = conv.makeHtml(document.getElementById('src').value);
document.getElementById('otp').value = html;
document.getElementById('otp2').innerHTML = html;
It is possible to do it with showdown. Check the demo here
Here's also a snippet showing how to do it.