chore: active CI in develop branch

pull/889/head
Estevao Soares dos Santos 2022-02-24 00:23:15 +00:00
parent 626f661e8e
commit 9f0b36d95b
6 changed files with 6196 additions and 6199 deletions

View File

@ -5,9 +5,9 @@ name: Node Linux CI
on:
push:
branches: [ master ]
branches: [ master, develop ]
pull_request:
branches: [ master ]
branches: [ master, develop ]
jobs:
build:

View File

@ -5,9 +5,9 @@ name: Node Windows CI
on:
push:
branches: [ master ]
branches: [ master, develop ]
pull_request:
branches: [ master ]
branches: [ master, develop ]
jobs:
build:

13
dist/showdown.js vendored
View File

@ -1,6 +1,5 @@
;/*! showdown v 2.0.0-alpha1 - 13-02-2021 */
;/*! showdown v 2.0.0-alpha1 - 24-02-2022 */
(function(){
/**
* Created by Tivie on 13-07-2015.
*/
@ -5163,12 +5162,10 @@ showdown.subParser('makeMarkdown.input', function (node, globals) {
} else {
txt += '[ ]';
}
if (node.hasChildNodes()) {
var children = node.childNodes,
childrenLength = children.length;
for (var i = 0; i < childrenLength; ++i) {
txt += showdown.subParser('makeMarkdown.node')(children[i], globals);
}
var children = node.childNodes,
childrenLength = children.length;
for (var i = 0; i < childrenLength; ++i) {
txt += showdown.subParser('makeMarkdown.node')(children[i], globals);
}
return txt;
});

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long