Skip to content

Commit 600f27b

Browse files
committed
Convert contributing guide to Markdown
Signed-off-by: lucperkins <[email protected]>
1 parent 313b30d commit 600f27b

File tree

5 files changed

+45
-50
lines changed

5 files changed

+45
-50
lines changed

.editorconfig

-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,3 @@ indent_style = tab
99
[*.{html,js,json,md,sass,yaml}]
1010
indent_style = space
1111
indent_size = 2
12-
13-
[*.py]
14-
indent_style = space
15-
indent_size = 4

assets/sass/style.sass

+3
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,9 @@ $colors: mergeColorMaps(("secondary": ($secondary, $white), "twitter-blue": ($tw
171171
max-height: 5rem
172172

173173
.content
174+
.button
175+
margin: 1rem 0
176+
174177
@for $i from 1 through 6
175178
h#{$i}
176179
&::before

content/contribute.md

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
title: Contributing to gRPC
3+
---
4+
5+
To contribute to gRPC documentation, please fork the [gRPC repository on GitHub](https://github.com/grpc/grpc.io) and start submitting pull requests.
6+
7+
## Contribute guidelines for gRPC
8+
9+
We welcome contributions to any of our three core repositories:
10+
11+
* [gRPC](https://github.com/grpc/grpc)
12+
* [gRPC Java](https://github.com/grpc/grpc-java)
13+
* [gRPC Go](https://github.com/grpc/grpc-go)
14+
15+
{{< button text="View guidelines" url="https://github.com/grpc/grpc/blob/master/CONTRIBUTING.md" >}}
16+
17+
## Contribution guidelines for the gRPC Ecosystem
18+
19+
The [gRPC Ecosystem](https://github.com/grpc-ecosystem/) is a different organization where we collect and curate valuable integrations of other projects with gRPC. You can propose a new project for it by filling out the **Propose new project** form.
20+
21+
{{< button text="View guidelines" url="https://github.com/grpc/grpc-contrib/blob/master/CONTRIBUTING.md" >}}
22+
23+
## Edit our site on GitHub
24+
25+
Click the below button to visit the repo for our site. You can then click the "Fork" button in the upper-right area of the screen to create a copy of our site on your GitHub account called a "fork." Make any changes you want in your fork, and when you are ready to send those changes to us, go to the index page for your fork and click **New Pull Request** to let us know about it.
26+
27+
{{< button text="Browse this site's source code" url="https://github.com/grpc/grpc.io" >}}
28+
29+
## Being a member of the gRPC organization on github
30+
31+
Being an organization member is not required for the vast majority of the contributions. Membership is required for certain administrative tasks such as accepting a pull request, or closing issues. If you wish to be part of the gRPC organization on github, please [get in touch with us](/community). Please note that in order to be part of the organization, your GitHub account needs to have [two-factor authentication enabled](https://help.github.com/articles/securing-your-account-with-two-factor-authentication-2fa/).

content/contribute/index.html

-46
This file was deleted.

layouts/shortcodes/button.html

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{{ $text := .Get "text" }}
2+
{{ $url := .Get "url" }}
3+
{{ $isExternal := hasPrefix $url "http" }}
4+
<a class="button is-primary is-outlined" href="{{ $url }}"{{ if $isExternal }} target="_blank"{{ end }}>
5+
<span class="icon">
6+
<i class="fas fa-sm fa-external-link-alt"></i>
7+
</span>
8+
<span>
9+
{{ $text }}
10+
</span>
11+
</a>

0 commit comments

Comments
 (0)