This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse/dialects/html.js
2013-10-16 10:28:42 -04:00

8 lines
196 B
JavaScript

/**
If a row begins with HTML tags, don't parse it.
**/
Discourse.Dialect.registerBlock('html', function(block, next) {
if (block.match(/^<[^>]+\>/)) {
return [ block.toString() ];
}
});