Replace tabs with spaces
This commit is contained in:
parent
b3b4651e33
commit
18dd4eae1f
|
@ -271,12 +271,12 @@ plugins.factory('userPlugins', function() {
|
|||
*/
|
||||
var asciinemaPlugin = new Plugin(function(message) {
|
||||
|
||||
var regexp = /http(s){0,1}:\/\/(www\.){0,1}asciinema.org\/a\/(\d+)/;
|
||||
var match = message.match(regexp);
|
||||
if (match) {
|
||||
var regexp = /http(s){0,1}:\/\/(www\.){0,1}asciinema.org\/a\/(\d+)/;
|
||||
var match = message.match(regexp);
|
||||
if (match) {
|
||||
var id = match[3];
|
||||
return "<script type='text/javascript' src='https://asciinema.org/a/" + id + ".js' id='asciicast-" + id + "' async></script>";
|
||||
}
|
||||
}
|
||||
});
|
||||
asciinemaPlugin.name = "ascii cast";
|
||||
|
||||
|
|
Loading…
Reference in New Issue