-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocusaurus.config.js
More file actions
181 lines (181 loc) · 5.9 KB
/
docusaurus.config.js
File metadata and controls
181 lines (181 loc) · 5.9 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
module.exports = {
"title": "Form Publisher Documentation",
"tagline": "The tagline of my site",
"url": "https://your-docusaurus-test-site.com",
"baseUrl": "/",
"onBrokenLinks": "throw",
"favicon": "img/favicon.ico",
"organizationName": "your-org",
"projectName": "docusaurus",
"themeConfig": {
"docs": {
"sidebar": {
"hideable": true,
},
},
"navbar": {
"style": "primary",
"logo": {
"alt": "Form Publisher Documentation",
"src": "img/form-publisher-support-logo.svg"
},
"items": [
{
"type": 'search',
"position": 'right',
}
],
},
"footer": {
"links": [
{
"items": [
{
"html": `
<img src="/img/form-publisher-logo-text.svg" alt="Form Publisher" width="189" height="34" />
<ul class="footer-social-items">
<li>
<a href="https://twitter.com/form_publisher" target="_blank" rel="noreferrer noopener" aria-label="Form Publisher on Twitter">
<img src="/img/social-twitter-icon.svg" alt="Form Publisher on Twitter" width="25" height="25" />
</a>
</li>
<li>
<a href="https://www.youtube.com/channel/UCYPZ_gNf3YFFsYxu4ldS7pg" target="_blank" rel="noreferrer noopener" aria-label="Form Publisher on YouTube">
<img src="/img/social-youtube-icon.svg" alt="Form Publisher on YouTube" width="25" height="25" />
</a>
</li>
<li>
<a href="https://linkedin.com/company/form-publisher" target="_blank" rel="noreferrer noopener" aria-label="Form Publisher on LinkedIn">
<img src="/img/social-linkedin-icon.svg" alt="Form Publisher on LinkedIn" width="25" height="25" />
</a>
</li>
<li>
<a href="https://www.facebook.com/formpublisher/" target="_blank" rel="noreferrer noopener" aria-label="Form Publisher on Facebook">
<img src="/img/social-facebook-icon.svg" alt="Form Publisher on Facebook" width="25" height="25" />
</a>
</li>
</ul>
`,
},
]
},
{
"title": "Product",
"items": [
{
"label": "How it works",
"to": "https://form-publisher.com/how-it-works/"
},
{
"label": "Features",
"to": "https://form-publisher.com/#Features"
},
{
"label": "Pricing",
"to": "https://form-publisher.com/pricing/"
},
{
"label": "Install Form Publisher",
"to": "https://workspace.google.com/marketplace/app/form_publisher_form_to_pdf_google_docs_t/827172627657"
}
],
},
{
"title": "Resources",
"items": [
{
"label": "Getting started",
"to": "https://support.form-publisher.com/hc/en-us/categories/201581669-Getting-Started"
},
{
"label": "Help center",
"to": "https://support.form-publisher.com/hc/en-us"
},
{
"label": "Contact support",
"to": "https://support.form-publisher.com/hc/en-us/requests/new"
},
{
"label": "Release notes",
"to": "https://support.form-publisher.com/hc/en-us/sections/203047705-Release-Notes"
},
{
"label": "Blog",
"to": "https://form-publisher.com/blog"
}
],
},
{
"title": "Legal",
"items": [
{
"label": "Terms of service",
"to": "https://form-publisher.com/terms-of-service/"
},
{
"label": "Privacy policy",
"to": "https://form-publisher.com/privacy-policy/"
},
{
"label": "Cookie policy",
"to": "https://form-publisher.com/cookie-policy/"
},
{
"label": "Google disclosure",
"to": "https://form-publisher.com/google-disclosure/"
},
{
"label": "DPA",
"to": "https://talarian.io/data-processing-agreement"
},
{
"label": "Impressum",
"to": "https://form-publisher.com/impressum/"
},
],
},
{
"title": "Company",
"items": [
{
"label": "About us",
"to": "https://talarian.io/"
},
{
"label": "We're hiring",
"to": "https://talarian.io/careers"
},
{
"label": "Awesome Table",
"to": "https://awesome-table.com/"
},
{
"label": "Yet Another Mail Merge",
"to": "https://yamm.com/"
},
],
},
],
"copyright": "Copyright © 2022 Talarian Sàrl. All rights reserved.",
}
},
"presets": [
[
"@docusaurus/preset-classic",
{
"docs": {
"routeBasePath": "/",
"sidebarPath": require.resolve('./sidebars.js'),
"remarkPlugins": [
require('./src/remark/convertYoutubeEmbeds.js'),
require('./src/remark/swapContextAndPrereq.js'),
require('./src/remark/createAwesomeTableEmbeds.js')],
},
"theme": {
"customCss": require.resolve('./src/css/custom.css')
}
}
]
],
"plugins": []
};