-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnode_753d176a9c489.tmp
58 lines (55 loc) · 2.14 KB
/
node_753d176a9c489.tmp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// @ts-check
let marked = require('./plugin/markdown/marked')
console.log(marked("sssssssssssssssssssssss sa \n and now for some {{text}}"))
console.log(marked("{{text}} and more"))
console.log(marked("some **text**"))
console.log(marked("some *text*"))
console.log(marked("<ht://wd.co.e>"))
// // var opts = {
// // lines: 7 // The number of lines to draw
// // ,
// // length: 0 // The length of each line
// // ,
// // width: 19 // The line thickness
// // ,
// // radius: 55 // The radius of the inner circle
// // ,
// // scale: 1.25 // Scales overall size of the spinner
// // ,
// // corners: 0.5 // Corner roundness (0..1)
// // ,
// // color: '#000' // #rgb or #rrggbb or array of colors
// // ,
// // opacity: 0 // Opacity of the lines
// // ,
// // rotate: 0 // The rotation offset
// // ,
// // direction: 1 // 1: clockwise, -1: counterclockwise
// // ,
// // speed: 0.8 // Rounds per second
// // ,
// // trail: 78 // Afterglow percentage
// // ,
// // fps: 20 // Frames per second when using setTimeout() as a fallback for CSS
// // ,
// // zIndex: 2e9 // The z-index (defaults to 2000000000)
// // ,
// // className: 'spinner' // The CSS class to assign to the spinner
// // ,
// // top: '50%' // Top position relative to parent
// // ,
// // left: '50%' // Left position relative to parent
// // ,
// // shadow: false // Whether to render a shadow
// // ,
// // hwaccel: false // Whether to use hardware acceleration
// // ,
// // position: 'absolute' // Element positioning
// // }
// // var target = document.getElementsByClassName('loading')
// // var spinner = new Spinner(opts).spin(target[0]);
// $body = $("body");
// $(document).on({
// ajaxStart: function() { $body.addClass("loading"); },
// ajaxStop: function() { $body.removeClass("loading"); }
// });