Add table class to parsed Markdown

Fixes https://github.com/PrivateBin/PrivateBin/issues/140
This commit is contained in:
rugk 2016-12-12 17:37:51 +01:00
parent 3f2de319f3
commit f755a99ab8
No known key found for this signature in database
GPG key ID: 05D40A636AFAB34D
7 changed files with 10 additions and 7 deletions

View file

@ -655,9 +655,12 @@ $(function() {
this.clearText.html(
converter.makeHtml(text)
);
// add table class from bootstrap css
this.clearText.find('table').addClass('table');
this.clearText.removeClass('hidden');
this.prettyMessage.addClass('hidden');
}
this.prettyMessage.addClass('hidden');
break;
case 'syntaxhighlighting':
if (typeof prettyPrintOne === 'function')