forked from theoephraim/node-google-spreadsheet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (78 loc) · 2.38 KB
/
index.html
File metadata and controls
92 lines (78 loc) · 2.38 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>google-spreadsheet - Google Spreadsheets API -- simple interface to read/write data and manage sheets</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Google Spreadsheets API -- simple interface to read/write data and manage sheets">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify/themes/vue.css">
<!-- <link rel="stylesheet" href="//unpkg.com/docsify-themeable/dist/css/theme-simple.css"> -->
<style>
table th {
text-align: left;
}
h3 code {
font-size: inherit !important;
}
h4 code {
font-size: inherit !important;
color: unset;
}
h4[id^="fn-"] {
margin-top: 2em;
margin-left: -.3em;
margin-bottom: -.6em;
}
h4[id^="fn-"] a code {
/* color: unset; */
}
h4[id^="fn-"] code::before {
display: inline-block;
/* content: '🔌'; */
content: '🔮';
padding-right: .3em;
}
h4[id^="fn-"]+blockquote {
margin: 0;
border-left-color: #e96900;
border-left: none;
/* font-style: italic; */
padding: 0;
}
/* h4[id^="fn-"] + blockquote > p::before {
padding: 0;
content: '🤔';
display: inline-block;
} */
/* h4 { margin-bottom: -.6em; } */
.markdown-section tr:nth-child(2n) {
background-color: #f5fdff;
}
.markdown-section th {
background: #e3f2f6;
}
.markdown-section code,
.markdown-section pre {
background-color: #efefef;
}
</style>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
auto2top: true,
name: 'google-spreadsheet',
repo: 'https://github.com/theoephraim/node-google-spreadsheet',
loadSidebar: true,
subMaxLevel: 4,
}
</script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/emoji.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-typescript.min.js"></script>
</body>
</html>