Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8f2bd91

Browse files
joker314reedloden
authored andcommitted
Fix minor typos etc. in community-guidelines.md (Hacker0x01#157)
* Fix typos firs -> first do no -> do not How do I ... referencing -> reference * Use markdown code blocks
1 parent 4bf3595 commit 8f2bd91

File tree

1 file changed

+31
-23
lines changed

1 file changed

+31
-23
lines changed

contributing-guidelines.md

Lines changed: 31 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -6,44 +6,52 @@ You can add new articles to either the Hacker Book or the Program Book.
66
#### Hacker Book
77
When adding a new article, make sure you format the file such that the first several lines of the markdown file are:
88

9-
`---`<br>
10-
`title: "Title of the Article"`<br>
11-
`path: "/hackers/title-of-the-article.html"`<br>
12-
`id: "hackers/title-of-the-article"`<br>
13-
`---`
9+
```md
10+
---
11+
title: "Title of the Article"
12+
path: "/hackers/title-of-the-article.html"
13+
id: "hackers/title-of-the-article"
14+
---
15+
```
1416

1517
#### Program Book
1618
When adding a new article to the program book, make sure you format the file such that the first several lines of the markdown file are:
1719

18-
`---`<br>
19-
`title: "Title of the Article"`<br>
20-
`path: "/programs/title-of-the-article.html"`<br>
21-
`id: "programs/title-of-the-article"`<br>
22-
`---`
20+
```md
21+
---
22+
title: "Title of the Article"
23+
path: "/programs/title-of-the-article.html"
24+
id: "programs/title-of-the-article"
25+
---
26+
```
2327

2428
#### Changelog Entry For a New Month
25-
You can also add a changelog entry for a new month that isn't listed on the changelog yet. To add a changelog entry for a new month, make sure you format the file such that the firs several lines of the markdown file are:
29+
You can also add a changelog entry for a new month that isn't listed on the changelog yet. To add a changelog entry for a new month, make sure you format the file such that the first several lines of the markdown file are:
2630

27-
`---`<br>
28-
`title: "Month Year"`<br>
29-
`path: "/changelog/[year]/[month]"`<br>
30-
`date: "year-month number"`<br>
31-
`---`
31+
```md
32+
---
33+
title: "Month Year"
34+
path: "/changelog/[year]/[month]"
35+
date: "year-month number"
36+
---
37+
```
3238

3339
Example:
34-
<br>`---`<br>
35-
`title: "November 2016"`<br>
36-
`path: "/changelog/2016/November"`<br>
37-
`date: "2016-11"`<br>
38-
`---`
40+
```md
41+
---
42+
title: "November 2016"
43+
path: "/changelog/2016/November"
44+
date: "2016-11"
45+
---
46+
```
3947

4048
### Github Formatting
4149
How do I... | Answer
4250
----------- | -------
4351
Add a link to a page within the docs site of the same book | `[Start H1 Response](start-h1-response.html)` or `[Start H1 Bounty](start-h1-bounty.html)`.
4452
Add a link to a page within the docs site to an article in another book | `[Start H1 Bounty](/programs/start-h1-bounty.html)`
4553
Add an image | `![image name](./images/signal-impact-2.png)`
46-
Referencing the HackerOne blog link | Use `https://hackerone.com/blog` not www.hackerone.com/blog
54+
Reference the HackerOne blog link | Use `https://hackerone.com/blog` not www.hackerone.com/blog
4755

4856
### Active Voice
4957
We use active voice at HackerOne as active voice is more personal and engaging vs. passive voice. In active voice, the subject does or acts upon the verb, while in passive voice, the subject is being acted upon.
@@ -60,7 +68,7 @@ In order to convey a personal and less formal voice, it's best to use contractio
6068
Contraction - (Yes, please use this!) | Non-Contracted Phrases (Steer away from this)
6169
------------------------------------- | -----------------------------------
6270
can't | cannot
63-
don't | do no
71+
don't | do not
6472
won't | will not
6573
it's | it is
6674
they're | they are

0 commit comments

Comments
 (0)