Skip to content

Commit dc23dcc

Browse files
docs - formatting
1 parent 41a99aa commit dc23dcc

File tree

2 files changed

+95
-95
lines changed

2 files changed

+95
-95
lines changed

docs/footerConfig.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
const footer = {
2-
links: [
3-
{
4-
items: [
5-
{
6-
html: `
2+
links: [
3+
{
4+
items: [
5+
{
6+
html: `
77
<div style="display: flex; gap: 20px; max-width: 50%">
88
<a href="https://slack.com/terms-of-service/user">Terms of Service</a>
99
<a href="https://slack.com/trust/privacy/privacy-policy">Privacy Information</a>
1010
</div>
1111
©2024 Slack Technologies, LLC, a Salesforce company. All rights reserved. Various trademarks held by their respective owners.
1212
`,
13-
},
14-
],
15-
},
16-
],
13+
},
14+
],
15+
},
16+
],
1717
};
1818

19-
module.exports = footer;
19+
module.exports = footer;

docs/navbarConfig.js

Lines changed: 85 additions & 85 deletions
Original file line numberDiff line numberDiff line change
@@ -1,88 +1,88 @@
11
const navbar = {
2-
title: "Slack Developer Tools",
3-
logo: {
4-
src: "img/slack-logo.svg",
5-
},
6-
items: [
7-
{
8-
type: "dropdown",
9-
label: "Bolt",
10-
position: "left",
11-
items: [
12-
{
13-
label: "Java",
14-
to: "https://tools.slack.dev/java-slack-sdk/guides/bolt-basics",
15-
target: "_self",
16-
},
17-
{
18-
label: "JavaScript",
19-
to: "https://tools.slack.dev/bolt-js",
20-
target: "_self",
21-
},
22-
{
23-
label: "Python",
24-
to: "https://tools.slack.dev/bolt-python",
25-
target: "_self",
26-
},
27-
],
28-
},
29-
{
30-
type: "dropdown",
31-
label: "SDKs",
32-
position: "left",
33-
items: [
34-
{
35-
label: "Java Slack SDK",
36-
to: "https://tools.slack.dev/java-slack-sdk/",
37-
target: "_self",
38-
},
39-
{
40-
label: "Node Slack SDK",
41-
to: "https://tools.slack.dev/node-slack-sdk/",
42-
target: "_self",
43-
},
44-
{
45-
label: "Python Slack SDK",
46-
to: "https://tools.slack.dev/python-slack-sdk/",
47-
target: "_self",
48-
},
49-
{
50-
label: "Deno Slack SDK",
51-
to: "https://api.slack.com/automation/quickstart",
52-
target: "_self",
53-
},
54-
],
55-
},
56-
{
57-
type: "dropdown",
58-
label: "Community",
59-
position: "left",
60-
items: [
61-
{
62-
label: "Community tools",
63-
to: "https://tools.slack.dev/community-tools",
64-
target: "_self",
65-
},
66-
{
67-
label: "Slack Community",
68-
to: "https://slackcommunity.com/",
69-
target: "_self",
70-
},
71-
],
72-
},
73-
{
74-
to: "https://api.slack.com/docs",
75-
label: "API Docs",
76-
target: "_self",
77-
},
78-
{
79-
"aria-label": "GitHub Repository",
80-
className: "navbar-github-link",
81-
href: "https://github.com/slackapi",
82-
position: "right",
83-
target: "_self",
84-
},
85-
],
2+
title: 'Slack Developer Tools',
3+
logo: {
4+
src: 'img/slack-logo.svg',
5+
},
6+
items: [
7+
{
8+
type: 'dropdown',
9+
label: 'Bolt',
10+
position: 'left',
11+
items: [
12+
{
13+
label: 'Java',
14+
to: 'https://tools.slack.dev/java-slack-sdk/guides/bolt-basics',
15+
target: '_self',
16+
},
17+
{
18+
label: 'JavaScript',
19+
to: 'https://tools.slack.dev/bolt-js',
20+
target: '_self',
21+
},
22+
{
23+
label: 'Python',
24+
to: 'https://tools.slack.dev/bolt-python',
25+
target: '_self',
26+
},
27+
],
28+
},
29+
{
30+
type: 'dropdown',
31+
label: 'SDKs',
32+
position: 'left',
33+
items: [
34+
{
35+
label: 'Java Slack SDK',
36+
to: 'https://tools.slack.dev/java-slack-sdk/',
37+
target: '_self',
38+
},
39+
{
40+
label: 'Node Slack SDK',
41+
to: 'https://tools.slack.dev/node-slack-sdk/',
42+
target: '_self',
43+
},
44+
{
45+
label: 'Python Slack SDK',
46+
to: 'https://tools.slack.dev/python-slack-sdk/',
47+
target: '_self',
48+
},
49+
{
50+
label: 'Deno Slack SDK',
51+
to: 'https://api.slack.com/automation/quickstart',
52+
target: '_self',
53+
},
54+
],
55+
},
56+
{
57+
type: 'dropdown',
58+
label: 'Community',
59+
position: 'left',
60+
items: [
61+
{
62+
label: 'Community tools',
63+
to: 'https://tools.slack.dev/community-tools',
64+
target: '_self',
65+
},
66+
{
67+
label: 'Slack Community',
68+
to: 'https://slackcommunity.com/',
69+
target: '_self',
70+
},
71+
],
72+
},
73+
{
74+
to: 'https://api.slack.com/docs',
75+
label: 'API Docs',
76+
target: '_self',
77+
},
78+
{
79+
'aria-label': 'GitHub Repository',
80+
className: 'navbar-github-link',
81+
href: 'https://github.com/slackapi',
82+
position: 'right',
83+
target: '_self',
84+
},
85+
],
8686
};
8787

88-
module.exports = navbar;
88+
module.exports = navbar;

0 commit comments

Comments
 (0)