You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
422 B

8 years ago
  1. (function () {
  2. Discourse.Markdown.whiteListTag('img', 'class', 'img-left');
  3. Discourse.Markdown.whiteListTag('img', 'class', 'img-right');
  4. Discourse.Markdown.whiteListTag('img', 'class', 'img-center');
  5. Discourse.Markdown.whiteListTag('img', 'class', 'img-custom');
  6. Discourse.Markdown.whiteListTag('img', 'data-max-height', /\d+\%?$/ );
  7. Discourse.Markdown.whiteListTag('img', 'data-max-width', /\d+\%?$/ );
  8. })();