Skip to content

Commit 87c58f9

Browse files
remove badges
1 parent 1f1673e commit 87c58f9

File tree

3 files changed

+3
-34
lines changed

3 files changed

+3
-34
lines changed

_data/tools/editors.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,20 @@
11
- name: Xcode
22
description: Xcode is a complete IDE enabling you to develop, test, debug, and distribute apps for all Apple platforms on macOS.
33
link: https://developer.apple.com/xcode
4-
officially-supported: true
4+
guide: https://developer.apple.com/xcode
55
- name: Visual Studio Code
66
description: Visual Studio Code is a cross-platform and extensible editor that supports Swift through the Swift extension, which provides intelligent editor functionality as well as debugging and test support.
77
link: https://code.visualstudio.com
88
guide: /documentation/articles/getting-started-with-vscode-swift.html
9-
officially-supported: true
109
- name: Emacs
1110
description: Emacs is an extensible cross-platform text editor. Swift editing support can be enabled through community provided packages.
1211
link: https://www.gnu.org/software/emacs/
13-
community-supported: true
1412
guide: /documentation/articles/zero-to-swift-emacs.html
1513
- name: Neovim
1614
description: Neovim is an extensible cross-platform text editor. Swift editing support can be enabled through your pick of community provided plugins.
1715
link: https://neovim.io/
1816
guide: /documentation/articles/zero-to-swift-nvim.html
19-
community-supported: true
2017
- name: Other Editors
2118
description: Any editor that supports the Language Server Protocol (LSP) can use SourceKit-LSP to provide intelligent editor functionality for Swift.
2219
link: https://github.com/apple/sourcekit-lsp/tree/main/Editors#other-editors
23-
officially-supported: true
24-
guide: /documentation/articles/other-swift-editors.html
20+
guide: https://github.com/apple/sourcekit-lsp/tree/main/Editors#other-editors

assets/stylesheets/pages/_tools.scss

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -28,24 +28,6 @@
2828
img {
2929
width: 26px;
3030
}
31-
32-
.supported {
33-
display: inline-flex;
34-
align-items: center;
35-
justify-content: center;
36-
border-radius: 4px;
37-
border: 1px #f05138 solid;
38-
font-size: 12px;
39-
line-height: 1;
40-
white-space: nowrap;
41-
color: #f05138;
42-
padding: 4px 5px;
43-
44-
&.community {
45-
border: 1px #3ea639 solid;
46-
color: #3ea639;
47-
}
48-
}
4931
}
5032

5133
@media (min-width: 1000px) {

tools/_editors.md

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,12 @@
77
<a target="_blank" href="{{ editor.link }}">
88
{{ editor.name }}
99
</a>
10-
{% if editor.officially-supported or editor.community-supported %}
11-
<span class="supported {% if editor.community-supported %} community{% endif %}">
12-
{% if editor.officially-supported %}
13-
Officially supported
14-
{% else %}
15-
Community supported
16-
{% endif %}
17-
</span>
18-
{% endif %}
1910
</h3>
2011
<p class="description">
2112
{{ editor.description }}
2213
</p>
2314
{% if editor.guide %}
24-
<a href="{{ editor.guide }}" class="cta-secondary">
15+
<a href="{{ editor.guide }}" class="cta-secondary">
2516
Learn more
2617
</a>
2718
{% endif %}

0 commit comments

Comments
 (0)