styledown 1.0.1 → 1.0.2.pre.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/History.md +6 -11
- data/Notes.md +68 -2
- data/Rakefile +7 -2
- data/lib/styledown/version.rb +1 -1
- data/lib/styledown.rb +5 -3
- data/test/test.rb +11 -11
- data/test/test_helper.rb +3 -3
- data/vendor/dist/styledown.js +182 -161
- metadata +5 -5
data/vendor/dist/styledown.js
CHANGED
@@ -286,7 +286,7 @@ Styledown.prototype = {
|
|
286
286
|
};
|
287
287
|
|
288
288
|
}).call(this,"/")
|
289
|
-
},{"./lib/default_conf":2,"./lib/filters":4,"./lib/utils":6,"./package.json":
|
289
|
+
},{"./lib/default_conf":2,"./lib/filters":4,"./lib/utils":6,"./package.json":250,"cheerio":32,"fs":7,"highlight.js":104,"js-beautify":242,"marked":246,"mdextract":247,"util":31}],2:[function(require,module,exports){
|
290
290
|
var version = require('../index').version;
|
291
291
|
|
292
292
|
module.exports = [
|
@@ -309,13 +309,16 @@ module.exports = [
|
|
309
309
|
* browserify distribution
|
310
310
|
*/
|
311
311
|
|
312
|
+
// for compatibility with console-less engines (eg, ruby)
|
313
|
+
require('console-polyfill');
|
314
|
+
|
312
315
|
(function () {
|
313
316
|
if (!this.window) this.window = this;
|
314
317
|
module.exports = require('../index');
|
315
318
|
this.Styledown = require('../index');
|
316
319
|
})();
|
317
320
|
|
318
|
-
},{"../index":1}],4:[function(require,module,exports){
|
321
|
+
},{"../index":1,"console-polyfill":102}],4:[function(require,module,exports){
|
319
322
|
var extend = require('util')._extend;
|
320
323
|
var parseCodeText = require('./utils').parseCodeText;
|
321
324
|
var parseTags = require('./utils').parseTags;
|
@@ -446,7 +449,7 @@ exports.isolateTextBlocks = function ($, pre) {
|
|
446
449
|
});
|
447
450
|
};
|
448
451
|
|
449
|
-
},{"./mdconf":5,"./utils":6,"cheerio":32,"highlight.js":
|
452
|
+
},{"./mdconf":5,"./utils":6,"cheerio":32,"highlight.js":104,"util":31}],5:[function(require,module,exports){
|
450
453
|
|
451
454
|
/**
|
452
455
|
* Module dependencies.
|
@@ -563,7 +566,7 @@ var normalizers = {
|
|
563
566
|
}
|
564
567
|
};
|
565
568
|
|
566
|
-
},{"marked":
|
569
|
+
},{"marked":246}],6:[function(require,module,exports){
|
567
570
|
/**
|
568
571
|
* Get the tags and code out of the code text.
|
569
572
|
*
|
@@ -643,7 +646,7 @@ exports.htmlize = function (src) {
|
|
643
646
|
}
|
644
647
|
};
|
645
648
|
|
646
|
-
},{"jade/lib/jade":
|
649
|
+
},{"jade/lib/jade":195}],7:[function(require,module,exports){
|
647
650
|
|
648
651
|
},{}],8:[function(require,module,exports){
|
649
652
|
module.exports=require(7)
|
@@ -19490,6 +19493,23 @@ module.exports={
|
|
19490
19493
|
}
|
19491
19494
|
|
19492
19495
|
},{}],102:[function(require,module,exports){
|
19496
|
+
// Console-polyfill. MIT license.
|
19497
|
+
// https://github.com/paulmillr/console-polyfill
|
19498
|
+
// Make it safe to do console.log() always.
|
19499
|
+
(function(con) {
|
19500
|
+
'use strict';
|
19501
|
+
var prop, method;
|
19502
|
+
var empty = {};
|
19503
|
+
var dummy = function() {};
|
19504
|
+
var properties = 'memory'.split(',');
|
19505
|
+
var methods = ('assert,clear,count,debug,dir,dirxml,error,exception,group,' +
|
19506
|
+
'groupCollapsed,groupEnd,info,log,markTimeline,profile,profiles,profileEnd,' +
|
19507
|
+
'show,table,time,timeEnd,timeline,timelineEnd,timeStamp,trace,warn').split(',');
|
19508
|
+
while (prop = properties.pop()) con[prop] = con[prop] || empty;
|
19509
|
+
while (method = methods.pop()) con[method] = con[method] || dummy;
|
19510
|
+
})(this.console = this.console || {}); // Using `this` for web workers.
|
19511
|
+
|
19512
|
+
},{}],103:[function(require,module,exports){
|
19493
19513
|
var Highlight = function() {
|
19494
19514
|
|
19495
19515
|
/* Utility functions */
|
@@ -20180,7 +20200,7 @@ var Highlight = function() {
|
|
20180
20200
|
};
|
20181
20201
|
};
|
20182
20202
|
module.exports = Highlight;
|
20183
|
-
},{}],
|
20203
|
+
},{}],104:[function(require,module,exports){
|
20184
20204
|
var Highlight = require('./highlight');
|
20185
20205
|
var hljs = new Highlight();
|
20186
20206
|
hljs.registerLanguage('bash', require('./languages/bash.js'));
|
@@ -20270,7 +20290,7 @@ hljs.registerLanguage('elixir', require('./languages/elixir.js'));
|
|
20270
20290
|
hljs.registerLanguage('typescript', require('./languages/typescript.js'));
|
20271
20291
|
hljs.registerLanguage('go', require('./languages/go.js'));
|
20272
20292
|
module.exports = hljs;
|
20273
|
-
},{"./highlight":
|
20293
|
+
},{"./highlight":103,"./languages/1c.js":105,"./languages/actionscript.js":106,"./languages/apache.js":107,"./languages/applescript.js":108,"./languages/asciidoc.js":109,"./languages/autohotkey.js":110,"./languages/avrasm.js":111,"./languages/axapta.js":112,"./languages/bash.js":113,"./languages/brainfuck.js":114,"./languages/capnproto.js":115,"./languages/clojure.js":116,"./languages/cmake.js":117,"./languages/coffeescript.js":118,"./languages/cpp.js":119,"./languages/cs.js":120,"./languages/css.js":121,"./languages/d.js":122,"./languages/delphi.js":123,"./languages/diff.js":124,"./languages/django.js":125,"./languages/dos.js":126,"./languages/elixir.js":127,"./languages/erlang-repl.js":128,"./languages/erlang.js":129,"./languages/fix.js":130,"./languages/fsharp.js":131,"./languages/gherkin.js":132,"./languages/glsl.js":133,"./languages/go.js":134,"./languages/gradle.js":135,"./languages/haml.js":136,"./languages/handlebars.js":137,"./languages/haskell.js":138,"./languages/haxe.js":139,"./languages/http.js":140,"./languages/ini.js":141,"./languages/java.js":142,"./languages/javascript.js":143,"./languages/json.js":144,"./languages/lasso.js":145,"./languages/lisp.js":146,"./languages/livecodeserver.js":147,"./languages/lua.js":148,"./languages/makefile.js":149,"./languages/markdown.js":150,"./languages/mathematica.js":151,"./languages/matlab.js":152,"./languages/mel.js":153,"./languages/mizar.js":154,"./languages/monkey.js":155,"./languages/nginx.js":156,"./languages/nimrod.js":157,"./languages/nix.js":158,"./languages/nsis.js":159,"./languages/objectivec.js":160,"./languages/ocaml.js":161,"./languages/oxygene.js":162,"./languages/parser3.js":163,"./languages/perl.js":164,"./languages/php.js":165,"./languages/profile.js":166,"./languages/protobuf.js":167,"./languages/python.js":168,"./languages/r.js":169,"./languages/rib.js":170,"./languages/rsl.js":171,"./languages/ruby.js":172,"./languages/ruleslanguage.js":173,"./languages/rust.js":174,"./languages/scala.js":175,"./languages/scilab.js":176,"./languages/scss.js":177,"./languages/smalltalk.js":178,"./languages/sql.js":179,"./languages/swift.js":180,"./languages/tex.js":181,"./languages/thrift.js":182,"./languages/typescript.js":183,"./languages/vala.js":184,"./languages/vbnet.js":185,"./languages/vbscript.js":186,"./languages/vhdl.js":187,"./languages/vim.js":188,"./languages/x86asm.js":189,"./languages/xml.js":190}],105:[function(require,module,exports){
|
20274
20294
|
module.exports = function(hljs){
|
20275
20295
|
var IDENT_RE_RU = '[a-zA-Zа-яА-Я][a-zA-Z0-9_а-яА-Я]*';
|
20276
20296
|
var OneS_KEYWORDS = 'возврат дата для если и или иначе иначеесли исключение конецесли ' +
|
@@ -20356,7 +20376,7 @@ module.exports = function(hljs){
|
|
20356
20376
|
]
|
20357
20377
|
};
|
20358
20378
|
};
|
20359
|
-
},{}],
|
20379
|
+
},{}],106:[function(require,module,exports){
|
20360
20380
|
module.exports = function(hljs) {
|
20361
20381
|
var IDENT_RE = '[a-zA-Z_$][a-zA-Z0-9_$]*';
|
20362
20382
|
var IDENT_FUNC_RETURN_TYPE_RE = '([*]|[a-zA-Z_$][a-zA-Z0-9_$]*)';
|
@@ -20430,7 +20450,7 @@ module.exports = function(hljs) {
|
|
20430
20450
|
]
|
20431
20451
|
};
|
20432
20452
|
};
|
20433
|
-
},{}],
|
20453
|
+
},{}],107:[function(require,module,exports){
|
20434
20454
|
module.exports = function(hljs) {
|
20435
20455
|
var NUMBER = {className: 'number', begin: '[\\$%]\\d+'};
|
20436
20456
|
return {
|
@@ -20476,7 +20496,7 @@ module.exports = function(hljs) {
|
|
20476
20496
|
illegal: /\S/
|
20477
20497
|
};
|
20478
20498
|
};
|
20479
|
-
},{}],
|
20499
|
+
},{}],108:[function(require,module,exports){
|
20480
20500
|
module.exports = function(hljs) {
|
20481
20501
|
var STRING = hljs.inherit(hljs.QUOTE_STRING_MODE, {illegal: ''});
|
20482
20502
|
var PARAMS = {
|
@@ -20572,7 +20592,7 @@ module.exports = function(hljs) {
|
|
20572
20592
|
illegal: '//'
|
20573
20593
|
};
|
20574
20594
|
};
|
20575
|
-
},{}],
|
20595
|
+
},{}],109:[function(require,module,exports){
|
20576
20596
|
module.exports = function(hljs) {
|
20577
20597
|
return {
|
20578
20598
|
contains: [
|
@@ -20765,7 +20785,7 @@ module.exports = function(hljs) {
|
|
20765
20785
|
]
|
20766
20786
|
};
|
20767
20787
|
};
|
20768
|
-
},{}],
|
20788
|
+
},{}],110:[function(require,module,exports){
|
20769
20789
|
module.exports = function(hljs) {
|
20770
20790
|
var BACKTICK_ESCAPE = {
|
20771
20791
|
className: 'escape',
|
@@ -20825,7 +20845,7 @@ module.exports = function(hljs) {
|
|
20825
20845
|
])
|
20826
20846
|
}
|
20827
20847
|
};
|
20828
|
-
},{}],
|
20848
|
+
},{}],111:[function(require,module,exports){
|
20829
20849
|
module.exports = function(hljs) {
|
20830
20850
|
return {
|
20831
20851
|
case_insensitive: true,
|
@@ -20881,7 +20901,7 @@ module.exports = function(hljs) {
|
|
20881
20901
|
]
|
20882
20902
|
};
|
20883
20903
|
};
|
20884
|
-
},{}],
|
20904
|
+
},{}],112:[function(require,module,exports){
|
20885
20905
|
module.exports = function(hljs) {
|
20886
20906
|
return {
|
20887
20907
|
keywords: 'false int abstract private char boolean static null if for true ' +
|
@@ -20916,7 +20936,7 @@ module.exports = function(hljs) {
|
|
20916
20936
|
]
|
20917
20937
|
};
|
20918
20938
|
};
|
20919
|
-
},{}],
|
20939
|
+
},{}],113:[function(require,module,exports){
|
20920
20940
|
module.exports = function(hljs) {
|
20921
20941
|
var VAR = {
|
20922
20942
|
className: 'variable',
|
@@ -20979,7 +20999,7 @@ module.exports = function(hljs) {
|
|
20979
20999
|
]
|
20980
21000
|
};
|
20981
21001
|
};
|
20982
|
-
},{}],
|
21002
|
+
},{}],114:[function(require,module,exports){
|
20983
21003
|
module.exports = function(hljs){
|
20984
21004
|
var LITERAL = {
|
20985
21005
|
className: 'literal',
|
@@ -21015,7 +21035,7 @@ module.exports = function(hljs){
|
|
21015
21035
|
]
|
21016
21036
|
};
|
21017
21037
|
};
|
21018
|
-
},{}],
|
21038
|
+
},{}],115:[function(require,module,exports){
|
21019
21039
|
module.exports = function(hljs) {
|
21020
21040
|
return {
|
21021
21041
|
aliases: ['capnp'],
|
@@ -21064,7 +21084,7 @@ module.exports = function(hljs) {
|
|
21064
21084
|
]
|
21065
21085
|
};
|
21066
21086
|
};
|
21067
|
-
},{}],
|
21087
|
+
},{}],116:[function(require,module,exports){
|
21068
21088
|
module.exports = function(hljs) {
|
21069
21089
|
var keywords = {
|
21070
21090
|
built_in:
|
@@ -21162,7 +21182,7 @@ module.exports = function(hljs) {
|
|
21162
21182
|
]
|
21163
21183
|
}
|
21164
21184
|
};
|
21165
|
-
},{}],
|
21185
|
+
},{}],117:[function(require,module,exports){
|
21166
21186
|
module.exports = function(hljs) {
|
21167
21187
|
return {
|
21168
21188
|
aliases: ['cmake.in'],
|
@@ -21201,7 +21221,7 @@ module.exports = function(hljs) {
|
|
21201
21221
|
]
|
21202
21222
|
};
|
21203
21223
|
};
|
21204
|
-
},{}],
|
21224
|
+
},{}],118:[function(require,module,exports){
|
21205
21225
|
module.exports = function(hljs) {
|
21206
21226
|
var KEYWORDS = {
|
21207
21227
|
keyword:
|
@@ -21332,7 +21352,7 @@ module.exports = function(hljs) {
|
|
21332
21352
|
])
|
21333
21353
|
};
|
21334
21354
|
};
|
21335
|
-
},{}],
|
21355
|
+
},{}],119:[function(require,module,exports){
|
21336
21356
|
module.exports = function(hljs) {
|
21337
21357
|
var CPP_KEYWORDS = {
|
21338
21358
|
keyword: 'false int float while private char catch export virtual operator sizeof ' +
|
@@ -21395,7 +21415,7 @@ module.exports = function(hljs) {
|
|
21395
21415
|
]
|
21396
21416
|
};
|
21397
21417
|
};
|
21398
|
-
},{}],
|
21418
|
+
},{}],120:[function(require,module,exports){
|
21399
21419
|
module.exports = function(hljs) {
|
21400
21420
|
var KEYWORDS =
|
21401
21421
|
// Normal keywords.
|
@@ -21469,7 +21489,7 @@ module.exports = function(hljs) {
|
|
21469
21489
|
]
|
21470
21490
|
};
|
21471
21491
|
};
|
21472
|
-
},{}],
|
21492
|
+
},{}],121:[function(require,module,exports){
|
21473
21493
|
module.exports = function(hljs) {
|
21474
21494
|
var IDENT_RE = '[a-zA-Z-][a-zA-Z0-9_-]*';
|
21475
21495
|
var FUNCTION = {
|
@@ -21573,7 +21593,7 @@ module.exports = function(hljs) {
|
|
21573
21593
|
]
|
21574
21594
|
};
|
21575
21595
|
};
|
21576
|
-
},{}],
|
21596
|
+
},{}],122:[function(require,module,exports){
|
21577
21597
|
module.exports = /**
|
21578
21598
|
* Known issues:
|
21579
21599
|
*
|
@@ -21830,7 +21850,7 @@ function(hljs) {
|
|
21830
21850
|
]
|
21831
21851
|
};
|
21832
21852
|
};
|
21833
|
-
},{}],
|
21853
|
+
},{}],123:[function(require,module,exports){
|
21834
21854
|
module.exports = function(hljs) {
|
21835
21855
|
var KEYWORDS =
|
21836
21856
|
'exports register file shl array record property for mod while set ally label uses raise not ' +
|
@@ -21889,7 +21909,7 @@ module.exports = function(hljs) {
|
|
21889
21909
|
]
|
21890
21910
|
};
|
21891
21911
|
};
|
21892
|
-
},{}],
|
21912
|
+
},{}],124:[function(require,module,exports){
|
21893
21913
|
module.exports = function(hljs) {
|
21894
21914
|
return {
|
21895
21915
|
aliases: ['patch'],
|
@@ -21929,7 +21949,7 @@ module.exports = function(hljs) {
|
|
21929
21949
|
]
|
21930
21950
|
};
|
21931
21951
|
};
|
21932
|
-
},{}],
|
21952
|
+
},{}],125:[function(require,module,exports){
|
21933
21953
|
module.exports = function(hljs) {
|
21934
21954
|
var FILTER = {
|
21935
21955
|
className: 'filter',
|
@@ -21985,7 +22005,7 @@ module.exports = function(hljs) {
|
|
21985
22005
|
]
|
21986
22006
|
};
|
21987
22007
|
};
|
21988
|
-
},{}],
|
22008
|
+
},{}],126:[function(require,module,exports){
|
21989
22009
|
module.exports = function(hljs) {
|
21990
22010
|
return {
|
21991
22011
|
aliases: ['bat', 'cmd'],
|
@@ -22017,7 +22037,7 @@ module.exports = function(hljs) {
|
|
22017
22037
|
]
|
22018
22038
|
};
|
22019
22039
|
};
|
22020
|
-
},{}],
|
22040
|
+
},{}],127:[function(require,module,exports){
|
22021
22041
|
module.exports = function(hljs) {
|
22022
22042
|
var ELIXIR_IDENT_RE = '[a-zA-Z_][a-zA-Z0-9_]*(\\!|\\?)?';
|
22023
22043
|
var ELIXIR_METHOD_RE = '[a-zA-Z_]\\w*[!?=]?|[-+~]\\@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?';
|
@@ -22126,7 +22146,7 @@ module.exports = function(hljs) {
|
|
22126
22146
|
contains: ELIXIR_DEFAULT_CONTAINS
|
22127
22147
|
};
|
22128
22148
|
};
|
22129
|
-
},{}],
|
22149
|
+
},{}],128:[function(require,module,exports){
|
22130
22150
|
module.exports = function(hljs) {
|
22131
22151
|
return {
|
22132
22152
|
keywords: {
|
@@ -22177,7 +22197,7 @@ module.exports = function(hljs) {
|
|
22177
22197
|
]
|
22178
22198
|
};
|
22179
22199
|
};
|
22180
|
-
},{}],
|
22200
|
+
},{}],129:[function(require,module,exports){
|
22181
22201
|
module.exports = function(hljs) {
|
22182
22202
|
var BASIC_ATOM_RE = '[a-z\'][a-zA-Z0-9_\']*';
|
22183
22203
|
var FUNCTION_NAME_RE = '(' + BASIC_ATOM_RE + ':' + BASIC_ATOM_RE + '|' + BASIC_ATOM_RE + ')';
|
@@ -22332,7 +22352,7 @@ module.exports = function(hljs) {
|
|
22332
22352
|
]
|
22333
22353
|
};
|
22334
22354
|
};
|
22335
|
-
},{}],
|
22355
|
+
},{}],130:[function(require,module,exports){
|
22336
22356
|
module.exports = function(hljs) {
|
22337
22357
|
return {
|
22338
22358
|
contains: [
|
@@ -22361,7 +22381,7 @@ module.exports = function(hljs) {
|
|
22361
22381
|
case_insensitive: true
|
22362
22382
|
};
|
22363
22383
|
};
|
22364
|
-
},{}],
|
22384
|
+
},{}],131:[function(require,module,exports){
|
22365
22385
|
module.exports = function(hljs) {
|
22366
22386
|
return {
|
22367
22387
|
aliases: ['fs'],
|
@@ -22408,7 +22428,7 @@ module.exports = function(hljs) {
|
|
22408
22428
|
]
|
22409
22429
|
};
|
22410
22430
|
};
|
22411
|
-
},{}],
|
22431
|
+
},{}],132:[function(require,module,exports){
|
22412
22432
|
module.exports = function (hljs) {
|
22413
22433
|
return {
|
22414
22434
|
keywords: 'Feature Background Ability Business\ Need Scenario Scenarios Scenario\ Outline Scenario\ Template Examples Given And Then But When',
|
@@ -22438,7 +22458,7 @@ module.exports = function (hljs) {
|
|
22438
22458
|
]
|
22439
22459
|
};
|
22440
22460
|
};
|
22441
|
-
},{}],
|
22461
|
+
},{}],133:[function(require,module,exports){
|
22442
22462
|
module.exports = function(hljs) {
|
22443
22463
|
return {
|
22444
22464
|
keywords: {
|
@@ -22532,7 +22552,7 @@ module.exports = function(hljs) {
|
|
22532
22552
|
]
|
22533
22553
|
};
|
22534
22554
|
};
|
22535
|
-
},{}],
|
22555
|
+
},{}],134:[function(require,module,exports){
|
22536
22556
|
module.exports = function(hljs) {
|
22537
22557
|
var GO_KEYWORDS = {
|
22538
22558
|
keyword:
|
@@ -22571,7 +22591,7 @@ module.exports = function(hljs) {
|
|
22571
22591
|
]
|
22572
22592
|
};
|
22573
22593
|
};
|
22574
|
-
},{}],
|
22594
|
+
},{}],135:[function(require,module,exports){
|
22575
22595
|
module.exports = function(hljs) {
|
22576
22596
|
return {
|
22577
22597
|
case_insensitive: true,
|
@@ -22606,7 +22626,7 @@ module.exports = function(hljs) {
|
|
22606
22626
|
]
|
22607
22627
|
}
|
22608
22628
|
};
|
22609
|
-
},{}],
|
22629
|
+
},{}],136:[function(require,module,exports){
|
22610
22630
|
module.exports = // TODO support filter tags like :javascript, support inline HTML
|
22611
22631
|
function(hljs) {
|
22612
22632
|
return {
|
@@ -22728,7 +22748,7 @@ function(hljs) {
|
|
22728
22748
|
]
|
22729
22749
|
};
|
22730
22750
|
};
|
22731
|
-
},{}],
|
22751
|
+
},{}],137:[function(require,module,exports){
|
22732
22752
|
module.exports = function(hljs) {
|
22733
22753
|
var EXPRESSION_KEYWORDS = 'each in with if else unless bindattr action collection debugger log outlet template unbound view yield';
|
22734
22754
|
return {
|
@@ -22761,7 +22781,7 @@ module.exports = function(hljs) {
|
|
22761
22781
|
]
|
22762
22782
|
};
|
22763
22783
|
};
|
22764
|
-
},{}],
|
22784
|
+
},{}],138:[function(require,module,exports){
|
22765
22785
|
module.exports = function(hljs) {
|
22766
22786
|
|
22767
22787
|
var COMMENT = {
|
@@ -22887,7 +22907,7 @@ module.exports = function(hljs) {
|
|
22887
22907
|
]
|
22888
22908
|
};
|
22889
22909
|
};
|
22890
|
-
},{}],
|
22910
|
+
},{}],139:[function(require,module,exports){
|
22891
22911
|
module.exports = function(hljs) {
|
22892
22912
|
var IDENT_RE = '[a-zA-Z_$][a-zA-Z0-9_$]*';
|
22893
22913
|
var IDENT_FUNC_RETURN_TYPE_RE = '([*]|[a-zA-Z_$][a-zA-Z0-9_$]*)';
|
@@ -22948,7 +22968,7 @@ module.exports = function(hljs) {
|
|
22948
22968
|
]
|
22949
22969
|
};
|
22950
22970
|
};
|
22951
|
-
},{}],
|
22971
|
+
},{}],140:[function(require,module,exports){
|
22952
22972
|
module.exports = function(hljs) {
|
22953
22973
|
return {
|
22954
22974
|
illegal: '\\S',
|
@@ -22982,7 +23002,7 @@ module.exports = function(hljs) {
|
|
22982
23002
|
]
|
22983
23003
|
};
|
22984
23004
|
};
|
22985
|
-
},{}],
|
23005
|
+
},{}],141:[function(require,module,exports){
|
22986
23006
|
module.exports = function(hljs) {
|
22987
23007
|
return {
|
22988
23008
|
case_insensitive: true,
|
@@ -23012,7 +23032,7 @@ module.exports = function(hljs) {
|
|
23012
23032
|
]
|
23013
23033
|
};
|
23014
23034
|
};
|
23015
|
-
},{}],
|
23035
|
+
},{}],142:[function(require,module,exports){
|
23016
23036
|
module.exports = function(hljs) {
|
23017
23037
|
var KEYWORDS =
|
23018
23038
|
'false synchronized int abstract float private char boolean static null if const ' +
|
@@ -23067,7 +23087,7 @@ module.exports = function(hljs) {
|
|
23067
23087
|
]
|
23068
23088
|
};
|
23069
23089
|
};
|
23070
|
-
},{}],
|
23090
|
+
},{}],143:[function(require,module,exports){
|
23071
23091
|
module.exports = function(hljs) {
|
23072
23092
|
return {
|
23073
23093
|
aliases: ['js'],
|
@@ -23139,7 +23159,7 @@ module.exports = function(hljs) {
|
|
23139
23159
|
]
|
23140
23160
|
};
|
23141
23161
|
};
|
23142
|
-
},{}],
|
23162
|
+
},{}],144:[function(require,module,exports){
|
23143
23163
|
module.exports = function(hljs) {
|
23144
23164
|
var LITERALS = {literal: 'true false null'};
|
23145
23165
|
var TYPES = [
|
@@ -23177,7 +23197,7 @@ module.exports = function(hljs) {
|
|
23177
23197
|
illegal: '\\S'
|
23178
23198
|
};
|
23179
23199
|
};
|
23180
|
-
},{}],
|
23200
|
+
},{}],145:[function(require,module,exports){
|
23181
23201
|
module.exports = function(hljs) {
|
23182
23202
|
var LASSO_IDENT_RE = '[a-zA-Z_][a-zA-Z0-9_.]*';
|
23183
23203
|
var LASSO_ANGLE_RE = '<\\?(lasso(script)?|=)';
|
@@ -23362,7 +23382,7 @@ module.exports = function(hljs) {
|
|
23362
23382
|
].concat(LASSO_CODE)
|
23363
23383
|
};
|
23364
23384
|
};
|
23365
|
-
},{}],
|
23385
|
+
},{}],146:[function(require,module,exports){
|
23366
23386
|
module.exports = function(hljs) {
|
23367
23387
|
var LISP_IDENT_RE = '[a-zA-Z_\\-\\+\\*\\/\\<\\=\\>\\&\\#][a-zA-Z0-9_\\-\\+\\*\\/\\<\\=\\>\\&\\#!]*';
|
23368
23388
|
var LISP_SIMPLE_NUMBER_RE = '(\\-|\\+)?\\d+(\\.\\d+|\\/\\d+)?((d|e|f|l|s)(\\+|\\-)?\\d+)?';
|
@@ -23443,7 +23463,7 @@ module.exports = function(hljs) {
|
|
23443
23463
|
]
|
23444
23464
|
};
|
23445
23465
|
};
|
23446
|
-
},{}],
|
23466
|
+
},{}],147:[function(require,module,exports){
|
23447
23467
|
module.exports = function(hljs) {
|
23448
23468
|
var VARIABLE = {
|
23449
23469
|
className: 'variable', begin: '\\b[gtps][A-Z]+[A-Za-z0-9_\\-]*\\b|\\$_[A-Z]+',
|
@@ -23612,7 +23632,7 @@ module.exports = function(hljs) {
|
|
23612
23632
|
illegal: ';$|^\\[|^='
|
23613
23633
|
};
|
23614
23634
|
};
|
23615
|
-
},{}],
|
23635
|
+
},{}],148:[function(require,module,exports){
|
23616
23636
|
module.exports = function(hljs) {
|
23617
23637
|
var OPENING_LONG_BRACKET = '\\[=*\\[';
|
23618
23638
|
var CLOSING_LONG_BRACKET = '\\]=*\\]';
|
@@ -23669,7 +23689,7 @@ module.exports = function(hljs) {
|
|
23669
23689
|
])
|
23670
23690
|
};
|
23671
23691
|
};
|
23672
|
-
},{}],
|
23692
|
+
},{}],149:[function(require,module,exports){
|
23673
23693
|
module.exports = function(hljs) {
|
23674
23694
|
var VARIABLE = {
|
23675
23695
|
className: 'variable',
|
@@ -23714,7 +23734,7 @@ module.exports = function(hljs) {
|
|
23714
23734
|
]
|
23715
23735
|
};
|
23716
23736
|
};
|
23717
|
-
},{}],
|
23737
|
+
},{}],150:[function(require,module,exports){
|
23718
23738
|
module.exports = function(hljs) {
|
23719
23739
|
return {
|
23720
23740
|
aliases: ['md', 'mkdown', 'mkd'],
|
@@ -23816,7 +23836,7 @@ module.exports = function(hljs) {
|
|
23816
23836
|
]
|
23817
23837
|
};
|
23818
23838
|
};
|
23819
|
-
},{}],
|
23839
|
+
},{}],151:[function(require,module,exports){
|
23820
23840
|
module.exports = function(hljs) {
|
23821
23841
|
return {
|
23822
23842
|
aliases: ['mma'],
|
@@ -23875,7 +23895,7 @@ module.exports = function(hljs) {
|
|
23875
23895
|
]
|
23876
23896
|
};
|
23877
23897
|
};
|
23878
|
-
},{}],
|
23898
|
+
},{}],152:[function(require,module,exports){
|
23879
23899
|
module.exports = function(hljs) {
|
23880
23900
|
var COMMON_CONTAINS = [
|
23881
23901
|
hljs.C_NUMBER_MODE,
|
@@ -23952,7 +23972,7 @@ module.exports = function(hljs) {
|
|
23952
23972
|
].concat(COMMON_CONTAINS)
|
23953
23973
|
};
|
23954
23974
|
};
|
23955
|
-
},{}],
|
23975
|
+
},{}],153:[function(require,module,exports){
|
23956
23976
|
module.exports = function(hljs) {
|
23957
23977
|
return {
|
23958
23978
|
keywords:
|
@@ -24182,7 +24202,7 @@ module.exports = function(hljs) {
|
|
24182
24202
|
]
|
24183
24203
|
};
|
24184
24204
|
};
|
24185
|
-
},{}],
|
24205
|
+
},{}],154:[function(require,module,exports){
|
24186
24206
|
module.exports = function(hljs) {
|
24187
24207
|
return {
|
24188
24208
|
keywords: [
|
@@ -24202,7 +24222,7 @@ module.exports = function(hljs) {
|
|
24202
24222
|
]
|
24203
24223
|
};
|
24204
24224
|
};
|
24205
|
-
},{}],
|
24225
|
+
},{}],155:[function(require,module,exports){
|
24206
24226
|
module.exports = function(hljs) {
|
24207
24227
|
var NUMBER = {
|
24208
24228
|
variants: [
|
@@ -24281,7 +24301,7 @@ module.exports = function(hljs) {
|
|
24281
24301
|
]
|
24282
24302
|
}
|
24283
24303
|
};
|
24284
|
-
},{}],
|
24304
|
+
},{}],156:[function(require,module,exports){
|
24285
24305
|
module.exports = function(hljs) {
|
24286
24306
|
var VAR = {
|
24287
24307
|
className: 'variable',
|
@@ -24362,7 +24382,7 @@ module.exports = function(hljs) {
|
|
24362
24382
|
illegal: '[^\\s\\}]'
|
24363
24383
|
};
|
24364
24384
|
};
|
24365
|
-
},{}],
|
24385
|
+
},{}],157:[function(require,module,exports){
|
24366
24386
|
module.exports = function(hljs) {
|
24367
24387
|
return {
|
24368
24388
|
keywords: {
|
@@ -24417,7 +24437,7 @@ module.exports = function(hljs) {
|
|
24417
24437
|
]
|
24418
24438
|
}
|
24419
24439
|
};
|
24420
|
-
},{}],
|
24440
|
+
},{}],158:[function(require,module,exports){
|
24421
24441
|
module.exports = function(hljs) {
|
24422
24442
|
var NIX_KEYWORDS = {
|
24423
24443
|
keyword: 'rec with let in inherit assert if else then',
|
@@ -24467,7 +24487,7 @@ module.exports = function(hljs) {
|
|
24467
24487
|
contains: EXPRESSIONS
|
24468
24488
|
};
|
24469
24489
|
};
|
24470
|
-
},{}],
|
24490
|
+
},{}],159:[function(require,module,exports){
|
24471
24491
|
module.exports = function(hljs) {
|
24472
24492
|
var CONSTANTS = {
|
24473
24493
|
className: 'symbol',
|
@@ -24553,7 +24573,7 @@ module.exports = function(hljs) {
|
|
24553
24573
|
]
|
24554
24574
|
};
|
24555
24575
|
};
|
24556
|
-
},{}],
|
24576
|
+
},{}],160:[function(require,module,exports){
|
24557
24577
|
module.exports = function(hljs) {
|
24558
24578
|
var OBJC_KEYWORDS = {
|
24559
24579
|
keyword:
|
@@ -24639,7 +24659,7 @@ module.exports = function(hljs) {
|
|
24639
24659
|
]
|
24640
24660
|
};
|
24641
24661
|
};
|
24642
|
-
},{}],
|
24662
|
+
},{}],161:[function(require,module,exports){
|
24643
24663
|
module.exports = function(hljs) {
|
24644
24664
|
return {
|
24645
24665
|
aliases: ['ml'],
|
@@ -24683,7 +24703,7 @@ module.exports = function(hljs) {
|
|
24683
24703
|
]
|
24684
24704
|
}
|
24685
24705
|
};
|
24686
|
-
},{}],
|
24706
|
+
},{}],162:[function(require,module,exports){
|
24687
24707
|
module.exports = function(hljs) {
|
24688
24708
|
var OXYGENE_KEYWORDS = 'abstract add and array as asc aspect assembly async begin break block by case class concat const copy constructor continue '+
|
24689
24709
|
'create default delegate desc distinct div do downto dynamic each else empty end ensure enum equals event except exit extension external false '+
|
@@ -24748,7 +24768,7 @@ module.exports = function(hljs) {
|
|
24748
24768
|
]
|
24749
24769
|
};
|
24750
24770
|
};
|
24751
|
-
},{}],
|
24771
|
+
},{}],163:[function(require,module,exports){
|
24752
24772
|
module.exports = function(hljs) {
|
24753
24773
|
return {
|
24754
24774
|
subLanguage: 'xml', relevance: 0,
|
@@ -24793,7 +24813,7 @@ module.exports = function(hljs) {
|
|
24793
24813
|
]
|
24794
24814
|
};
|
24795
24815
|
};
|
24796
|
-
},{}],
|
24816
|
+
},{}],164:[function(require,module,exports){
|
24797
24817
|
module.exports = function(hljs) {
|
24798
24818
|
var PERL_KEYWORDS = 'getpwent getservent quotemeta msgrcv scalar kill dbmclose undef lc ' +
|
24799
24819
|
'ma syswrite tr send umask sysopen shmwrite vec qx utime local oct semctl localtime ' +
|
@@ -24942,7 +24962,7 @@ module.exports = function(hljs) {
|
|
24942
24962
|
contains: PERL_DEFAULT_CONTAINS
|
24943
24963
|
};
|
24944
24964
|
};
|
24945
|
-
},{}],
|
24965
|
+
},{}],165:[function(require,module,exports){
|
24946
24966
|
module.exports = function(hljs) {
|
24947
24967
|
var VARIABLE = {
|
24948
24968
|
className: 'variable', begin: '(\\$|->)+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*'
|
@@ -25051,7 +25071,7 @@ module.exports = function(hljs) {
|
|
25051
25071
|
]
|
25052
25072
|
};
|
25053
25073
|
};
|
25054
|
-
},{}],
|
25074
|
+
},{}],166:[function(require,module,exports){
|
25055
25075
|
module.exports = function(hljs) {
|
25056
25076
|
return {
|
25057
25077
|
contains: [
|
@@ -25093,7 +25113,7 @@ module.exports = function(hljs) {
|
|
25093
25113
|
]
|
25094
25114
|
};
|
25095
25115
|
};
|
25096
|
-
},{}],
|
25116
|
+
},{}],167:[function(require,module,exports){
|
25097
25117
|
module.exports = function(hljs) {
|
25098
25118
|
return {
|
25099
25119
|
keywords: {
|
@@ -25130,7 +25150,7 @@ module.exports = function(hljs) {
|
|
25130
25150
|
]
|
25131
25151
|
};
|
25132
25152
|
};
|
25133
|
-
},{}],
|
25153
|
+
},{}],168:[function(require,module,exports){
|
25134
25154
|
module.exports = function(hljs) {
|
25135
25155
|
var PROMPT = {
|
25136
25156
|
className: 'prompt', begin: /^(>>>|\.\.\.) /
|
@@ -25214,7 +25234,7 @@ module.exports = function(hljs) {
|
|
25214
25234
|
]
|
25215
25235
|
};
|
25216
25236
|
};
|
25217
|
-
},{}],
|
25237
|
+
},{}],169:[function(require,module,exports){
|
25218
25238
|
module.exports = function(hljs) {
|
25219
25239
|
var IDENT_RE = '([a-zA-Z]|\\.[a-zA-Z.])[a-zA-Z0-9._]*';
|
25220
25240
|
|
@@ -25284,7 +25304,7 @@ module.exports = function(hljs) {
|
|
25284
25304
|
]
|
25285
25305
|
};
|
25286
25306
|
};
|
25287
|
-
},{}],
|
25307
|
+
},{}],170:[function(require,module,exports){
|
25288
25308
|
module.exports = function(hljs) {
|
25289
25309
|
return {
|
25290
25310
|
keywords:
|
@@ -25311,7 +25331,7 @@ module.exports = function(hljs) {
|
|
25311
25331
|
]
|
25312
25332
|
};
|
25313
25333
|
};
|
25314
|
-
},{}],
|
25334
|
+
},{}],171:[function(require,module,exports){
|
25315
25335
|
module.exports = function(hljs) {
|
25316
25336
|
return {
|
25317
25337
|
keywords: {
|
@@ -25348,7 +25368,7 @@ module.exports = function(hljs) {
|
|
25348
25368
|
]
|
25349
25369
|
};
|
25350
25370
|
};
|
25351
|
-
},{}],
|
25371
|
+
},{}],172:[function(require,module,exports){
|
25352
25372
|
module.exports = function(hljs) {
|
25353
25373
|
var RUBY_METHOD_RE = '[a-zA-Z_]\\w*[!?=]?|[-+~]\\@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?';
|
25354
25374
|
var RUBY_KEYWORDS =
|
@@ -25533,7 +25553,7 @@ module.exports = function(hljs) {
|
|
25533
25553
|
contains: IRB_DEFAULT.concat(RUBY_DEFAULT_CONTAINS)
|
25534
25554
|
};
|
25535
25555
|
};
|
25536
|
-
},{}],
|
25556
|
+
},{}],173:[function(require,module,exports){
|
25537
25557
|
module.exports = function(hljs) {
|
25538
25558
|
return {
|
25539
25559
|
keywords: {
|
@@ -25590,7 +25610,7 @@ module.exports = function(hljs) {
|
|
25590
25610
|
]
|
25591
25611
|
};
|
25592
25612
|
};
|
25593
|
-
},{}],
|
25613
|
+
},{}],174:[function(require,module,exports){
|
25594
25614
|
module.exports = function(hljs) {
|
25595
25615
|
return {
|
25596
25616
|
aliases: ['rs'],
|
@@ -25652,7 +25672,7 @@ module.exports = function(hljs) {
|
|
25652
25672
|
]
|
25653
25673
|
};
|
25654
25674
|
};
|
25655
|
-
},{}],
|
25675
|
+
},{}],175:[function(require,module,exports){
|
25656
25676
|
module.exports = function(hljs) {
|
25657
25677
|
var ANNOTATION = {
|
25658
25678
|
className: 'annotation', begin: '@[A-Za-z]+'
|
@@ -25711,7 +25731,7 @@ module.exports = function(hljs) {
|
|
25711
25731
|
]
|
25712
25732
|
};
|
25713
25733
|
};
|
25714
|
-
},{}],
|
25734
|
+
},{}],176:[function(require,module,exports){
|
25715
25735
|
module.exports = function(hljs) {
|
25716
25736
|
|
25717
25737
|
var COMMON_CONTAINS = [
|
@@ -25769,7 +25789,7 @@ module.exports = function(hljs) {
|
|
25769
25789
|
].concat(COMMON_CONTAINS)
|
25770
25790
|
};
|
25771
25791
|
};
|
25772
|
-
},{}],
|
25792
|
+
},{}],177:[function(require,module,exports){
|
25773
25793
|
module.exports = function(hljs) {
|
25774
25794
|
var IDENT_RE = '[a-zA-Z-][a-zA-Z0-9_-]*';
|
25775
25795
|
var VARIABLE = {
|
@@ -25886,7 +25906,7 @@ module.exports = function(hljs) {
|
|
25886
25906
|
]
|
25887
25907
|
};
|
25888
25908
|
};
|
25889
|
-
},{}],
|
25909
|
+
},{}],178:[function(require,module,exports){
|
25890
25910
|
module.exports = function(hljs) {
|
25891
25911
|
var VAR_IDENT_RE = '[a-z][a-zA-Z0-9_]*';
|
25892
25912
|
var CHAR = {
|
@@ -25942,7 +25962,7 @@ module.exports = function(hljs) {
|
|
25942
25962
|
]
|
25943
25963
|
};
|
25944
25964
|
};
|
25945
|
-
},{}],
|
25965
|
+
},{}],179:[function(require,module,exports){
|
25946
25966
|
module.exports = function(hljs) {
|
25947
25967
|
var COMMENT_MODE = {
|
25948
25968
|
className: 'comment',
|
@@ -26045,7 +26065,7 @@ module.exports = function(hljs) {
|
|
26045
26065
|
]
|
26046
26066
|
};
|
26047
26067
|
};
|
26048
|
-
},{}],
|
26068
|
+
},{}],180:[function(require,module,exports){
|
26049
26069
|
module.exports = function(hljs) {
|
26050
26070
|
var SWIFT_KEYWORDS = {
|
26051
26071
|
keyword: 'class deinit enum extension func import init let protocol static ' +
|
@@ -26150,7 +26170,7 @@ module.exports = function(hljs) {
|
|
26150
26170
|
]
|
26151
26171
|
};
|
26152
26172
|
};
|
26153
|
-
},{}],
|
26173
|
+
},{}],181:[function(require,module,exports){
|
26154
26174
|
module.exports = function(hljs) {
|
26155
26175
|
var COMMAND1 = {
|
26156
26176
|
className: 'command',
|
@@ -26203,7 +26223,7 @@ module.exports = function(hljs) {
|
|
26203
26223
|
]
|
26204
26224
|
};
|
26205
26225
|
};
|
26206
|
-
},{}],
|
26226
|
+
},{}],182:[function(require,module,exports){
|
26207
26227
|
module.exports = function(hljs) {
|
26208
26228
|
var BUILT_IN_TYPES = 'bool byte i16 i32 i64 double string binary';
|
26209
26229
|
return {
|
@@ -26239,7 +26259,7 @@ module.exports = function(hljs) {
|
|
26239
26259
|
]
|
26240
26260
|
};
|
26241
26261
|
};
|
26242
|
-
},{}],
|
26262
|
+
},{}],183:[function(require,module,exports){
|
26243
26263
|
module.exports = function(hljs) {
|
26244
26264
|
return {
|
26245
26265
|
aliases: ['ts'],
|
@@ -26326,7 +26346,7 @@ module.exports = function(hljs) {
|
|
26326
26346
|
]
|
26327
26347
|
};
|
26328
26348
|
};
|
26329
|
-
},{}],
|
26349
|
+
},{}],184:[function(require,module,exports){
|
26330
26350
|
module.exports = function(hljs) {
|
26331
26351
|
return {
|
26332
26352
|
keywords: {
|
@@ -26381,7 +26401,7 @@ module.exports = function(hljs) {
|
|
26381
26401
|
]
|
26382
26402
|
};
|
26383
26403
|
};
|
26384
|
-
},{}],
|
26404
|
+
},{}],185:[function(require,module,exports){
|
26385
26405
|
module.exports = function(hljs) {
|
26386
26406
|
return {
|
26387
26407
|
aliases: ['vb'],
|
@@ -26432,7 +26452,7 @@ module.exports = function(hljs) {
|
|
26432
26452
|
]
|
26433
26453
|
};
|
26434
26454
|
};
|
26435
|
-
},{}],
|
26455
|
+
},{}],186:[function(require,module,exports){
|
26436
26456
|
module.exports = function(hljs) {
|
26437
26457
|
return {
|
26438
26458
|
aliases: ['vbs'],
|
@@ -26469,7 +26489,7 @@ module.exports = function(hljs) {
|
|
26469
26489
|
]
|
26470
26490
|
};
|
26471
26491
|
};
|
26472
|
-
},{}],
|
26492
|
+
},{}],187:[function(require,module,exports){
|
26473
26493
|
module.exports = function(hljs) {
|
26474
26494
|
return {
|
26475
26495
|
case_insensitive: true,
|
@@ -26512,7 +26532,7 @@ module.exports = function(hljs) {
|
|
26512
26532
|
]
|
26513
26533
|
}; // return
|
26514
26534
|
};
|
26515
|
-
},{}],
|
26535
|
+
},{}],188:[function(require,module,exports){
|
26516
26536
|
module.exports = function(hljs) {
|
26517
26537
|
return {
|
26518
26538
|
lexemes: /[!#@\w]+/,
|
@@ -26575,7 +26595,7 @@ module.exports = function(hljs) {
|
|
26575
26595
|
]
|
26576
26596
|
};
|
26577
26597
|
};
|
26578
|
-
},{}],
|
26598
|
+
},{}],189:[function(require,module,exports){
|
26579
26599
|
module.exports = function(hljs) {
|
26580
26600
|
return {
|
26581
26601
|
case_insensitive: true,
|
@@ -26722,7 +26742,7 @@ module.exports = function(hljs) {
|
|
26722
26742
|
]
|
26723
26743
|
};
|
26724
26744
|
};
|
26725
|
-
},{}],
|
26745
|
+
},{}],190:[function(require,module,exports){
|
26726
26746
|
module.exports = function(hljs) {
|
26727
26747
|
var XML_IDENT_RE = '[A-Za-z0-9\\._:-]+';
|
26728
26748
|
var PHP = {
|
@@ -26826,7 +26846,7 @@ module.exports = function(hljs) {
|
|
26826
26846
|
]
|
26827
26847
|
};
|
26828
26848
|
};
|
26829
|
-
},{}],
|
26849
|
+
},{}],191:[function(require,module,exports){
|
26830
26850
|
'use strict';
|
26831
26851
|
|
26832
26852
|
var nodes = require('./nodes');
|
@@ -27531,7 +27551,7 @@ Compiler.prototype = {
|
|
27531
27551
|
}
|
27532
27552
|
};
|
27533
27553
|
|
27534
|
-
},{"./doctypes":
|
27554
|
+
},{"./doctypes":192,"./filters":193,"./nodes":206,"./runtime":214,"./self-closing":215,"./utils":216,"character-parser":217,"constantinople":218}],192:[function(require,module,exports){
|
27535
27555
|
'use strict';
|
27536
27556
|
|
27537
27557
|
module.exports = {
|
@@ -27544,7 +27564,7 @@ module.exports = {
|
|
27544
27564
|
, 'basic': '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML Basic 1.1//EN" "http://www.w3.org/TR/xhtml-basic/xhtml-basic11.dtd">'
|
27545
27565
|
, 'mobile': '<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.2//EN" "http://www.openmobilealliance.org/tech/DTD/xhtml-mobile12.dtd">'
|
27546
27566
|
};
|
27547
|
-
},{}],
|
27567
|
+
},{}],193:[function(require,module,exports){
|
27548
27568
|
'use strict';
|
27549
27569
|
|
27550
27570
|
module.exports = filter;
|
@@ -27557,7 +27577,7 @@ function filter(name, str, options) {
|
|
27557
27577
|
return res;
|
27558
27578
|
}
|
27559
27579
|
|
27560
|
-
},{}],
|
27580
|
+
},{}],194:[function(require,module,exports){
|
27561
27581
|
'use strict';
|
27562
27582
|
|
27563
27583
|
module.exports = [
|
@@ -27581,7 +27601,7 @@ module.exports = [
|
|
27581
27601
|
, 'sub'
|
27582
27602
|
, 'sup'
|
27583
27603
|
];
|
27584
|
-
},{}],
|
27604
|
+
},{}],195:[function(require,module,exports){
|
27585
27605
|
'use strict';
|
27586
27606
|
|
27587
27607
|
/*!
|
@@ -27949,7 +27969,7 @@ exports.compileFileClient = function(path, options){
|
|
27949
27969
|
|
27950
27970
|
exports.__express = exports.renderFile;
|
27951
27971
|
|
27952
|
-
},{"./compiler":
|
27972
|
+
},{"./compiler":191,"./doctypes":192,"./filters":193,"./lexer":196,"./nodes":206,"./parser":213,"./runtime":214,"./self-closing":215,"./utils":216,"fs":7,"with":230}],196:[function(require,module,exports){
|
27953
27973
|
'use strict';
|
27954
27974
|
|
27955
27975
|
var utils = require('./utils');
|
@@ -28884,7 +28904,7 @@ Lexer.prototype = {
|
|
28884
28904
|
}
|
28885
28905
|
};
|
28886
28906
|
|
28887
|
-
},{"./utils":
|
28907
|
+
},{"./utils":216,"character-parser":217}],197:[function(require,module,exports){
|
28888
28908
|
'use strict';
|
28889
28909
|
|
28890
28910
|
var Node = require('./node');
|
@@ -28969,7 +28989,7 @@ Attrs.prototype.addAttributes = function (src) {
|
|
28969
28989
|
this.attributeBlocks.push(src);
|
28970
28990
|
};
|
28971
28991
|
|
28972
|
-
},{"./node":
|
28992
|
+
},{"./node":210}],198:[function(require,module,exports){
|
28973
28993
|
'use strict';
|
28974
28994
|
|
28975
28995
|
var Node = require('./node');
|
@@ -28995,7 +29015,7 @@ BlockComment.prototype.constructor = BlockComment;
|
|
28995
29015
|
|
28996
29016
|
BlockComment.prototype.type = 'BlockComment';
|
28997
29017
|
|
28998
|
-
},{"./node":
|
29018
|
+
},{"./node":210}],199:[function(require,module,exports){
|
28999
29019
|
'use strict';
|
29000
29020
|
|
29001
29021
|
var Node = require('./node');
|
@@ -29115,7 +29135,7 @@ Block.prototype.clone = function(){
|
|
29115
29135
|
return clone;
|
29116
29136
|
};
|
29117
29137
|
|
29118
|
-
},{"./node":
|
29138
|
+
},{"./node":210}],200:[function(require,module,exports){
|
29119
29139
|
'use strict';
|
29120
29140
|
|
29121
29141
|
var Node = require('./node');
|
@@ -29150,7 +29170,7 @@ When.prototype.constructor = When;
|
|
29150
29170
|
|
29151
29171
|
When.prototype.type = 'When';
|
29152
29172
|
|
29153
|
-
},{"./node":
|
29173
|
+
},{"./node":210}],201:[function(require,module,exports){
|
29154
29174
|
'use strict';
|
29155
29175
|
|
29156
29176
|
var Node = require('./node');
|
@@ -29177,7 +29197,7 @@ Code.prototype = Object.create(Node.prototype);
|
|
29177
29197
|
Code.prototype.constructor = Code;
|
29178
29198
|
|
29179
29199
|
Code.prototype.type = 'Code'; // prevent the minifiers removing this
|
29180
|
-
},{"./node":
|
29200
|
+
},{"./node":210}],202:[function(require,module,exports){
|
29181
29201
|
'use strict';
|
29182
29202
|
|
29183
29203
|
var Node = require('./node');
|
@@ -29202,7 +29222,7 @@ Comment.prototype.constructor = Comment;
|
|
29202
29222
|
|
29203
29223
|
Comment.prototype.type = 'Comment';
|
29204
29224
|
|
29205
|
-
},{"./node":
|
29225
|
+
},{"./node":210}],203:[function(require,module,exports){
|
29206
29226
|
'use strict';
|
29207
29227
|
|
29208
29228
|
var Node = require('./node');
|
@@ -29224,7 +29244,7 @@ Doctype.prototype.constructor = Doctype;
|
|
29224
29244
|
|
29225
29245
|
Doctype.prototype.type = 'Doctype';
|
29226
29246
|
|
29227
|
-
},{"./node":
|
29247
|
+
},{"./node":210}],204:[function(require,module,exports){
|
29228
29248
|
'use strict';
|
29229
29249
|
|
29230
29250
|
var Node = require('./node');
|
@@ -29252,7 +29272,7 @@ Each.prototype.constructor = Each;
|
|
29252
29272
|
|
29253
29273
|
Each.prototype.type = 'Each';
|
29254
29274
|
|
29255
|
-
},{"./node":
|
29275
|
+
},{"./node":210}],205:[function(require,module,exports){
|
29256
29276
|
'use strict';
|
29257
29277
|
|
29258
29278
|
var Node = require('./node');
|
@@ -29278,7 +29298,7 @@ Filter.prototype.constructor = Filter;
|
|
29278
29298
|
|
29279
29299
|
Filter.prototype.type = 'Filter';
|
29280
29300
|
|
29281
|
-
},{"./node":
|
29301
|
+
},{"./node":210}],206:[function(require,module,exports){
|
29282
29302
|
'use strict';
|
29283
29303
|
|
29284
29304
|
exports.Node = require('./node');
|
@@ -29296,7 +29316,7 @@ exports.Literal = require('./literal');
|
|
29296
29316
|
exports.BlockComment = require('./block-comment');
|
29297
29317
|
exports.Doctype = require('./doctype');
|
29298
29318
|
|
29299
|
-
},{"./block":
|
29319
|
+
},{"./block":199,"./block-comment":198,"./case":200,"./code":201,"./comment":202,"./doctype":203,"./each":204,"./filter":205,"./literal":207,"./mixin":209,"./mixin-block":208,"./node":210,"./tag":211,"./text":212}],207:[function(require,module,exports){
|
29300
29320
|
'use strict';
|
29301
29321
|
|
29302
29322
|
var Node = require('./node');
|
@@ -29318,7 +29338,7 @@ Literal.prototype.constructor = Literal;
|
|
29318
29338
|
|
29319
29339
|
Literal.prototype.type = 'Literal';
|
29320
29340
|
|
29321
|
-
},{"./node":
|
29341
|
+
},{"./node":210}],208:[function(require,module,exports){
|
29322
29342
|
'use strict';
|
29323
29343
|
|
29324
29344
|
var Node = require('./node');
|
@@ -29338,7 +29358,7 @@ MixinBlock.prototype.constructor = MixinBlock;
|
|
29338
29358
|
|
29339
29359
|
MixinBlock.prototype.type = 'MixinBlock';
|
29340
29360
|
|
29341
|
-
},{"./node":
|
29361
|
+
},{"./node":210}],209:[function(require,module,exports){
|
29342
29362
|
'use strict';
|
29343
29363
|
|
29344
29364
|
var Attrs = require('./attrs');
|
@@ -29366,7 +29386,7 @@ Mixin.prototype.constructor = Mixin;
|
|
29366
29386
|
|
29367
29387
|
Mixin.prototype.type = 'Mixin';
|
29368
29388
|
|
29369
|
-
},{"./attrs":
|
29389
|
+
},{"./attrs":197}],210:[function(require,module,exports){
|
29370
29390
|
'use strict';
|
29371
29391
|
|
29372
29392
|
var Node = module.exports = function Node(){};
|
@@ -29386,7 +29406,7 @@ Node.prototype.clone = function(){
|
|
29386
29406
|
|
29387
29407
|
Node.prototype.type = '';
|
29388
29408
|
|
29389
|
-
},{}],
|
29409
|
+
},{}],211:[function(require,module,exports){
|
29390
29410
|
'use strict';
|
29391
29411
|
|
29392
29412
|
var Attrs = require('./attrs');
|
@@ -29477,7 +29497,7 @@ Tag.prototype.canInline = function(){
|
|
29477
29497
|
return false;
|
29478
29498
|
};
|
29479
29499
|
|
29480
|
-
},{"../inline-tags":
|
29500
|
+
},{"../inline-tags":194,"./attrs":197,"./block":199}],212:[function(require,module,exports){
|
29481
29501
|
'use strict';
|
29482
29502
|
|
29483
29503
|
var Node = require('./node');
|
@@ -29504,7 +29524,7 @@ Text.prototype.type = 'Text';
|
|
29504
29524
|
*/
|
29505
29525
|
|
29506
29526
|
Text.prototype.isText = true;
|
29507
|
-
},{"./node":
|
29527
|
+
},{"./node":210}],213:[function(require,module,exports){
|
29508
29528
|
'use strict';
|
29509
29529
|
|
29510
29530
|
var Lexer = require('./lexer');
|
@@ -30329,7 +30349,7 @@ Parser.prototype = {
|
|
30329
30349
|
}
|
30330
30350
|
};
|
30331
30351
|
|
30332
|
-
},{"./filters":
|
30352
|
+
},{"./filters":193,"./lexer":196,"./nodes":206,"./utils":216,"character-parser":217,"constantinople":218,"fs":7,"path":15}],214:[function(require,module,exports){
|
30333
30353
|
'use strict';
|
30334
30354
|
|
30335
30355
|
/**
|
@@ -30534,7 +30554,7 @@ exports.rethrow = function rethrow(err, filename, lineno, str){
|
|
30534
30554
|
throw err;
|
30535
30555
|
};
|
30536
30556
|
|
30537
|
-
},{"fs":7}],
|
30557
|
+
},{"fs":7}],215:[function(require,module,exports){
|
30538
30558
|
'use strict';
|
30539
30559
|
|
30540
30560
|
// source: http://www.w3.org/html/wg/drafts/html/master/syntax.html#void-elements
|
@@ -30558,7 +30578,7 @@ module.exports = [
|
|
30558
30578
|
, 'wbr'
|
30559
30579
|
];
|
30560
30580
|
|
30561
|
-
},{}],
|
30581
|
+
},{}],216:[function(require,module,exports){
|
30562
30582
|
'use strict';
|
30563
30583
|
|
30564
30584
|
/**
|
@@ -30607,7 +30627,7 @@ exports.walkAST = function walkAST(ast, before, after) {
|
|
30607
30627
|
after && after(ast);
|
30608
30628
|
};
|
30609
30629
|
|
30610
|
-
},{}],
|
30630
|
+
},{}],217:[function(require,module,exports){
|
30611
30631
|
exports = (module.exports = parse);
|
30612
30632
|
exports.parse = parse;
|
30613
30633
|
function parse(src, state, options) {
|
@@ -30826,7 +30846,7 @@ function isRegexp(history) {
|
|
30826
30846
|
return false;
|
30827
30847
|
}
|
30828
30848
|
|
30829
|
-
},{}],
|
30849
|
+
},{}],218:[function(require,module,exports){
|
30830
30850
|
'use strict'
|
30831
30851
|
|
30832
30852
|
var uglify = require('uglify-js')
|
@@ -30882,7 +30902,7 @@ function detect(src) {
|
|
30882
30902
|
return globals
|
30883
30903
|
}
|
30884
30904
|
|
30885
|
-
},{"uglify-js":
|
30905
|
+
},{"uglify-js":229}],219:[function(require,module,exports){
|
30886
30906
|
/*
|
30887
30907
|
* Copyright 2009-2011 Mozilla Foundation and contributors
|
30888
30908
|
* Licensed under the New BSD license. See LICENSE.txt or:
|
@@ -30892,7 +30912,7 @@ exports.SourceMapGenerator = require('./source-map/source-map-generator').Source
|
|
30892
30912
|
exports.SourceMapConsumer = require('./source-map/source-map-consumer').SourceMapConsumer;
|
30893
30913
|
exports.SourceNode = require('./source-map/source-node').SourceNode;
|
30894
30914
|
|
30895
|
-
},{"./source-map/source-map-consumer":
|
30915
|
+
},{"./source-map/source-map-consumer":224,"./source-map/source-map-generator":225,"./source-map/source-node":226}],220:[function(require,module,exports){
|
30896
30916
|
/* -*- Mode: js; js-indent-level: 2; -*- */
|
30897
30917
|
/*
|
30898
30918
|
* Copyright 2011 Mozilla Foundation and contributors
|
@@ -30991,7 +31011,7 @@ define(function (require, exports, module) {
|
|
30991
31011
|
|
30992
31012
|
});
|
30993
31013
|
|
30994
|
-
},{"./util":
|
31014
|
+
},{"./util":227,"amdefine":228}],221:[function(require,module,exports){
|
30995
31015
|
/* -*- Mode: js; js-indent-level: 2; -*- */
|
30996
31016
|
/*
|
30997
31017
|
* Copyright 2011 Mozilla Foundation and contributors
|
@@ -31137,7 +31157,7 @@ define(function (require, exports, module) {
|
|
31137
31157
|
|
31138
31158
|
});
|
31139
31159
|
|
31140
|
-
},{"./base64":
|
31160
|
+
},{"./base64":222,"amdefine":228}],222:[function(require,module,exports){
|
31141
31161
|
/* -*- Mode: js; js-indent-level: 2; -*- */
|
31142
31162
|
/*
|
31143
31163
|
* Copyright 2011 Mozilla Foundation and contributors
|
@@ -31181,7 +31201,7 @@ define(function (require, exports, module) {
|
|
31181
31201
|
|
31182
31202
|
});
|
31183
31203
|
|
31184
|
-
},{"amdefine":
|
31204
|
+
},{"amdefine":228}],223:[function(require,module,exports){
|
31185
31205
|
/* -*- Mode: js; js-indent-level: 2; -*- */
|
31186
31206
|
/*
|
31187
31207
|
* Copyright 2011 Mozilla Foundation and contributors
|
@@ -31264,7 +31284,7 @@ define(function (require, exports, module) {
|
|
31264
31284
|
|
31265
31285
|
});
|
31266
31286
|
|
31267
|
-
},{"amdefine":
|
31287
|
+
},{"amdefine":228}],224:[function(require,module,exports){
|
31268
31288
|
/* -*- Mode: js; js-indent-level: 2; -*- */
|
31269
31289
|
/*
|
31270
31290
|
* Copyright 2011 Mozilla Foundation and contributors
|
@@ -31744,7 +31764,7 @@ define(function (require, exports, module) {
|
|
31744
31764
|
|
31745
31765
|
});
|
31746
31766
|
|
31747
|
-
},{"./array-set":
|
31767
|
+
},{"./array-set":220,"./base64-vlq":221,"./binary-search":223,"./util":227,"amdefine":228}],225:[function(require,module,exports){
|
31748
31768
|
/* -*- Mode: js; js-indent-level: 2; -*- */
|
31749
31769
|
/*
|
31750
31770
|
* Copyright 2011 Mozilla Foundation and contributors
|
@@ -32146,7 +32166,7 @@ define(function (require, exports, module) {
|
|
32146
32166
|
|
32147
32167
|
});
|
32148
32168
|
|
32149
|
-
},{"./array-set":
|
32169
|
+
},{"./array-set":220,"./base64-vlq":221,"./util":227,"amdefine":228}],226:[function(require,module,exports){
|
32150
32170
|
/* -*- Mode: js; js-indent-level: 2; -*- */
|
32151
32171
|
/*
|
32152
32172
|
* Copyright 2011 Mozilla Foundation and contributors
|
@@ -32548,7 +32568,7 @@ define(function (require, exports, module) {
|
|
32548
32568
|
|
32549
32569
|
});
|
32550
32570
|
|
32551
|
-
},{"./source-map-generator":
|
32571
|
+
},{"./source-map-generator":225,"./util":227,"amdefine":228}],227:[function(require,module,exports){
|
32552
32572
|
/* -*- Mode: js; js-indent-level: 2; -*- */
|
32553
32573
|
/*
|
32554
32574
|
* Copyright 2011 Mozilla Foundation and contributors
|
@@ -32852,7 +32872,7 @@ define(function (require, exports, module) {
|
|
32852
32872
|
|
32853
32873
|
});
|
32854
32874
|
|
32855
|
-
},{"amdefine":
|
32875
|
+
},{"amdefine":228}],228:[function(require,module,exports){
|
32856
32876
|
(function (process,__filename){
|
32857
32877
|
/** vim: et:ts=4:sw=4:sts=4
|
32858
32878
|
* @license amdefine 0.1.0 Copyright (c) 2011, The Dojo Foundation All Rights Reserved.
|
@@ -33155,7 +33175,7 @@ function amdefine(module, requireFn) {
|
|
33155
33175
|
module.exports = amdefine;
|
33156
33176
|
|
33157
33177
|
}).call(this,require('_process'),"/node_modules/jade/node_modules/constantinople/node_modules/uglify-js/node_modules/source-map/node_modules/amdefine/amdefine.js")
|
33158
|
-
},{"_process":16,"path":15}],
|
33178
|
+
},{"_process":16,"path":15}],229:[function(require,module,exports){
|
33159
33179
|
var sys = require("util");
|
33160
33180
|
var MOZ_SourceMap = require("source-map");
|
33161
33181
|
var UglifyJS = exports;
|
@@ -41014,7 +41034,7 @@ exports.describe_ast = function () {
|
|
41014
41034
|
doitem(UglifyJS.AST_Node);
|
41015
41035
|
return out + "";
|
41016
41036
|
};
|
41017
|
-
},{"source-map":
|
41037
|
+
},{"source-map":219,"util":31}],230:[function(require,module,exports){
|
41018
41038
|
'use strict';
|
41019
41039
|
|
41020
41040
|
var uglify = require('uglify-js')
|
@@ -41127,25 +41147,25 @@ function unwrapReturns(src, result) {
|
|
41127
41147
|
else return 'var ' + result + '=' + src.join('') + ';if (' + result + ') return ' + result + '.value'
|
41128
41148
|
}
|
41129
41149
|
|
41130
|
-
},{"uglify-js":
|
41131
|
-
arguments[4][218][0].apply(exports,arguments)
|
41132
|
-
},{"./source-map/source-map-consumer":235,"./source-map/source-map-generator":236,"./source-map/source-node":237}],231:[function(require,module,exports){
|
41150
|
+
},{"uglify-js":241}],231:[function(require,module,exports){
|
41133
41151
|
arguments[4][219][0].apply(exports,arguments)
|
41134
|
-
},{"./
|
41152
|
+
},{"./source-map/source-map-consumer":236,"./source-map/source-map-generator":237,"./source-map/source-node":238}],232:[function(require,module,exports){
|
41135
41153
|
arguments[4][220][0].apply(exports,arguments)
|
41136
|
-
},{"./
|
41154
|
+
},{"./util":239,"amdefine":240}],233:[function(require,module,exports){
|
41137
41155
|
arguments[4][221][0].apply(exports,arguments)
|
41138
|
-
},{"amdefine":
|
41156
|
+
},{"./base64":234,"amdefine":240}],234:[function(require,module,exports){
|
41139
41157
|
arguments[4][222][0].apply(exports,arguments)
|
41140
|
-
},{"amdefine":
|
41158
|
+
},{"amdefine":240}],235:[function(require,module,exports){
|
41141
41159
|
arguments[4][223][0].apply(exports,arguments)
|
41142
|
-
},{"
|
41160
|
+
},{"amdefine":240}],236:[function(require,module,exports){
|
41143
41161
|
arguments[4][224][0].apply(exports,arguments)
|
41144
|
-
},{"./array-set":
|
41162
|
+
},{"./array-set":232,"./base64-vlq":233,"./binary-search":235,"./util":239,"amdefine":240}],237:[function(require,module,exports){
|
41145
41163
|
arguments[4][225][0].apply(exports,arguments)
|
41146
|
-
},{"./
|
41164
|
+
},{"./array-set":232,"./base64-vlq":233,"./util":239,"amdefine":240}],238:[function(require,module,exports){
|
41147
41165
|
arguments[4][226][0].apply(exports,arguments)
|
41148
|
-
},{"amdefine":
|
41166
|
+
},{"./source-map-generator":237,"./util":239,"amdefine":240}],239:[function(require,module,exports){
|
41167
|
+
arguments[4][227][0].apply(exports,arguments)
|
41168
|
+
},{"amdefine":240}],240:[function(require,module,exports){
|
41149
41169
|
(function (process,__filename){
|
41150
41170
|
/** vim: et:ts=4:sw=4:sts=4
|
41151
41171
|
* @license amdefine 0.1.0 Copyright (c) 2011, The Dojo Foundation All Rights Reserved.
|
@@ -41448,9 +41468,9 @@ function amdefine(module, requireFn) {
|
|
41448
41468
|
module.exports = amdefine;
|
41449
41469
|
|
41450
41470
|
}).call(this,require('_process'),"/node_modules/jade/node_modules/with/node_modules/uglify-js/node_modules/source-map/node_modules/amdefine/amdefine.js")
|
41451
|
-
},{"_process":16,"path":15}],
|
41452
|
-
module.exports=require(
|
41453
|
-
},{"source-map":
|
41471
|
+
},{"_process":16,"path":15}],241:[function(require,module,exports){
|
41472
|
+
module.exports=require(229)
|
41473
|
+
},{"source-map":231,"util":31}],242:[function(require,module,exports){
|
41454
41474
|
/**
|
41455
41475
|
The following batches are equivalent:
|
41456
41476
|
|
@@ -41507,7 +41527,7 @@ if (typeof define === "function" && define.amd) {
|
|
41507
41527
|
}
|
41508
41528
|
|
41509
41529
|
|
41510
|
-
},{"./lib/beautify":
|
41530
|
+
},{"./lib/beautify":245,"./lib/beautify-css":243,"./lib/beautify-html":244}],243:[function(require,module,exports){
|
41511
41531
|
(function (global){
|
41512
41532
|
/*jshint curly:true, eqeqeq:true, laxbreak:true, noempty:false */
|
41513
41533
|
/*
|
@@ -41890,7 +41910,7 @@ if (typeof define === "function" && define.amd) {
|
|
41890
41910
|
}());
|
41891
41911
|
|
41892
41912
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
41893
|
-
},{}],
|
41913
|
+
},{}],244:[function(require,module,exports){
|
41894
41914
|
(function (global){
|
41895
41915
|
/*jshint curly:true, eqeqeq:true, laxbreak:true, noempty:false */
|
41896
41916
|
/*
|
@@ -42739,7 +42759,7 @@ if (typeof define === "function" && define.amd) {
|
|
42739
42759
|
}());
|
42740
42760
|
|
42741
42761
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
42742
|
-
},{"./beautify-css.js":
|
42762
|
+
},{"./beautify-css.js":243,"./beautify.js":245}],245:[function(require,module,exports){
|
42743
42763
|
(function (global){
|
42744
42764
|
/*jshint curly:true, eqeqeq:true, laxbreak:true, noempty:false */
|
42745
42765
|
/*
|
@@ -44441,7 +44461,7 @@ if (typeof define === "function" && define.amd) {
|
|
44441
44461
|
}());
|
44442
44462
|
|
44443
44463
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
44444
|
-
},{}],
|
44464
|
+
},{}],246:[function(require,module,exports){
|
44445
44465
|
(function (global){
|
44446
44466
|
/**
|
44447
44467
|
* marked - a markdown parser
|
@@ -45696,7 +45716,7 @@ if (typeof exports === 'object') {
|
|
45696
45716
|
}());
|
45697
45717
|
|
45698
45718
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
45699
|
-
},{}],
|
45719
|
+
},{}],247:[function(require,module,exports){
|
45700
45720
|
/* jshint boss: true, maxlen: 80 */
|
45701
45721
|
|
45702
45722
|
var Matcher = require('./lib/matcher');
|
@@ -46003,7 +46023,7 @@ function slugify (str) {
|
|
46003
46023
|
|
46004
46024
|
mdextract.Document = Document;
|
46005
46025
|
|
46006
|
-
},{"./lib/matcher":
|
46026
|
+
},{"./lib/matcher":248,"./lib/transforms":249,"util":31}],248:[function(require,module,exports){
|
46007
46027
|
var extend = require('util')._extend;
|
46008
46028
|
|
46009
46029
|
/**
|
@@ -46196,7 +46216,7 @@ function escapeGroups (regexp) {
|
|
46196
46216
|
|
46197
46217
|
module.exports = Matcher;
|
46198
46218
|
|
46199
|
-
},{"util":31}],
|
46219
|
+
},{"util":31}],249:[function(require,module,exports){
|
46200
46220
|
/**
|
46201
46221
|
* unpackCode : unpackCode(code, options)
|
46202
46222
|
* puts code blocks from string `code` into fences. Works with 2-space and
|
@@ -46269,7 +46289,7 @@ function eachBlock (code, fn) {
|
|
46269
46289
|
}).join('\n\n');
|
46270
46290
|
}
|
46271
46291
|
|
46272
|
-
},{}],
|
46292
|
+
},{}],250:[function(require,module,exports){
|
46273
46293
|
module.exports={
|
46274
46294
|
"name": "styledown",
|
46275
46295
|
"description": "Markdown-based styleguide generator",
|
@@ -46279,7 +46299,7 @@ module.exports={
|
|
46279
46299
|
"styleguide"
|
46280
46300
|
],
|
46281
46301
|
"author": "Rico Sta. Cruz <hi@ricostacruz.com>",
|
46282
|
-
"version": "1.0.
|
46302
|
+
"version": "1.0.2",
|
46283
46303
|
"repository": {
|
46284
46304
|
"type": "git",
|
46285
46305
|
"url": "https://github.com/styledown/styledown.git"
|
@@ -46287,7 +46307,7 @@ module.exports={
|
|
46287
46307
|
"main": "index",
|
46288
46308
|
"scripts": {
|
46289
46309
|
"test": "mocha",
|
46290
|
-
"prepublish": "make dist"
|
46310
|
+
"prepublish": "make -B dist"
|
46291
46311
|
},
|
46292
46312
|
"dependencies": {
|
46293
46313
|
"cheerio": "0.17.0",
|
@@ -46301,14 +46321,15 @@ module.exports={
|
|
46301
46321
|
"read-input": "^0.1.0"
|
46302
46322
|
},
|
46303
46323
|
"devDependencies": {
|
46324
|
+
"browserify": "^5.9.1",
|
46304
46325
|
"chai": "~1.9.0",
|
46305
46326
|
"coffee-script": "~1.7.1",
|
46306
|
-
"
|
46307
|
-
"mocha": "~1.17.1",
|
46308
|
-
"jsdom": "~0.10.1",
|
46309
|
-
"supertest": "~0.9.0",
|
46327
|
+
"console-polyfill": "^0.1.2",
|
46310
46328
|
"express": "~3.4.8",
|
46311
|
-
"
|
46329
|
+
"jsdom": "~0.10.1",
|
46330
|
+
"mocha": "~1.17.1",
|
46331
|
+
"sinon": "~1.8.2",
|
46332
|
+
"supertest": "~0.9.0"
|
46312
46333
|
},
|
46313
46334
|
"bin": {
|
46314
46335
|
"styledown": "./bin/styledown"
|