This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1 | |
| 00:02:11,500 --> 00:02:12,980 | |
| Okay, got it. | |
| 2 | |
| 00:02:14,570 --> 00:02:16,600 | |
| They've found the Mother Maguar. | |
| 3 | |
| 00:02:18,100 --> 00:02:20,050 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "data": "<!DOCTYPE html>", | |
| "index": 0, | |
| "type": "doctype", | |
| "indent": 0 | |
| }, | |
| { | |
| "data": "\r\n", | |
| "index": 15, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "data": "<!DOCTYPE html>", | |
| "type": "doctype" | |
| }, | |
| { | |
| "data": "\r\n", | |
| "type": "whitespace" | |
| }, | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class CoffeeScriptLangInfo(_JSLikeLangInfo): | |
| name = "CoffeeScript" | |
| exts = ['.coffee'] | |
| common_keywords = set(["true", "false", "null", "this", | |
| "new", "delete", "typeof", "in", "instanceof", | |
| "return", "throw", "break", "continue", "debugger", | |
| "if", "else", "switch", "for", "while", "do", "try", "catch", "finally", | |
| "class", "extends", "super", | |
| "undefined", "then", "unless", "until", "loop", "of", "by", "when", | |
| "and", "or", "is", "isnt", "not", "yes", "no", "on" "off", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class CoffeeScriptLangInfo(_JSLikeLangInfo): | |
| name = "CoffeeScript" | |
| exts = ['.coffee'] | |
| common_keywords = set(["true", "false", "null", "this", | |
| "new", "delete", "typeof", "in", "instanceof", | |
| "return", "throw", "break", "continue", "debugger", | |
| "if", "else", "switch", "for", "while", "do", "try", "catch", "finally", | |
| "class", "extends", "super", | |
| "undefined", "then", "unless", "until", "loop", "of", "by", "when", | |
| "and", "or", "is", "isnt", "not", "yes", "no", "on" "off", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var directReplace = (function () { | |
| var escapeExp = /[&<>"]/, escapeAmpExp = /&/g, escapeLtExp = /</g, escapeGtExp = />/g, escapeQuotExp = /"/g; | |
| return function (text) { | |
| if (text == null) { | |
| return ''; | |
| } | |
| var result = text.toString(); | |
| if (!escapeExp.test(result)) { | |
| return result; | |
| } |
NewerOlder