Skip to content

Commit 78074b9

Browse files
authored
Merge pull request #139 from Nibba2018/markdown_fixes
Improving github templates with proper Markdown Syntax
2 parents 4b9085b + 22ca873 commit 78074b9

File tree

7 files changed

+95
-57
lines changed

7 files changed

+95
-57
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
5+
---
6+
7+
**Describe the bug**
8+
9+
<!-- A clear and concise description of what the bug is. -->
10+
11+
**To Reproduce**
12+
13+
Steps to reproduce the behavior:
14+
<!-- Clear steps on how to reproduce the bug. -->
15+
* Step1
16+
* Step2
17+
* ...
18+
19+
**Expected behavior**
20+
<!-- A clear and concise description of what you expected to happen. -->
21+
22+
**Screenshots**
23+
<!-- If applicable, add screenshots to help explain your problem. -->
24+
25+
**Additional context**
26+
<!-- Add any other context about the problem here. -->
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
5+
---
6+
7+
**Is your feature request related to a problem? Please describe.**
8+
<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -->
9+
10+
**Describe the solution you'd like**
11+
<!-- A clear and concise description of what you want to happen. -->
12+
13+
**Describe alternatives you've considered**
14+
<!-- A clear and concise description of any alternative solutions or features you've considered. -->
15+
16+
**Additional context**
17+
<!-- Add any other context or screenshots about the feature request here. -->

.github/issue_template.md .github/ISSUE_TEMPLATE/general_issue.md

-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,3 @@ Describe your issue here. A description of the problem you're trying to solve.
66
### Mention expected Result or Output of your issue:
77

88
### Mention language you want to work on:
9-

.github/pull_request_template.md

+16-16
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
### Your checklist for this pull request
2-
🚨Please review the [guidelines for contributing](https://github.com/sanscript-tech/hacking-tools-scripts/blob/main/CONTRIBUTING.md) to this repository.<br><br>
2+
:warning: Please review the [guidelines for contributing](https://github.com/sanscript-tech/hacking-tools-scripts/blob/main/CONTRIBUTING.md) to this repository.
33

4-
Parent issue: #("mention issue no.")<br>
4+
Parent issue: #("mention issue no.")
55

66
### Type of change
77

8-
Select all that applies:<br>
9-
[ ]New feature (non-breaking change which adds functionality)<br>
10-
[ ]Bug fix (non-breaking change which fixes an issue)<br>
11-
[ ]Breaking change (fix or feature that would cause existing functionality to not work as expected)<br>
12-
[ ]This change requires a documentation update<br>
8+
**Select all that applies**:
9+
* [ ] New feature (non-breaking change which adds functionality)
10+
* [ ] Bug fix (non-breaking change which fixes an issue)
11+
* [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
12+
* [ ] This change requires a documentation update
1313

1414
### Checklist:
1515

16-
[ ]My code follows the style guidelines(Clean Code) of this project<br>
17-
[ ]I have performed a self-review of my own code<br>
18-
[ ]I have used consistent code conventions and clear function/method/variable names<br>
19-
[ ]I have commented on my code, particularly in hard-to-understand areas<br>
20-
[ ]I have created a helpful and easy to understand README.md which contains description, requirements and use case.<br>
21-
[ ]I have added relevent screenshots if necessary<br>
22-
[ ]I have made corresponding changes to the documentation<br>
23-
[ ]My changes generate no new warnings<br>
16+
* [ ] My code follows the style guidelines(Clean Code) of this project.
17+
* [ ] I have performed a self-review of my own code.
18+
* [ ] I have used consistent code conventions and clear function/method/variable names.
19+
* [ ] I have commented on my code, particularly in hard-to-understand areas.
20+
* [ ] I have created a helpful and easy to understand README.md which contains description, requirements and use case.
21+
* [ ] I have added relevent screenshots if necessary.
22+
* [ ] I have made corresponding changes to the documentation.
23+
* [ ] My changes generate no new warnings.
2424

25-
### 💔Thank you!
25+
### :heart: Thank you!

CODE_OF_CONDUCT.md

+5-7
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ reporter of any incident.
7272
Community leaders will follow these Community Impact Guidelines in determining
7373
the consequences for any action they deem in violation of this Code of Conduct:
7474

75-
### 1. Correction
75+
1. ### Correction
7676

7777
**Community Impact**: Use of inappropriate language or other behavior deemed
7878
unprofessional or unwelcome in the community.
@@ -81,7 +81,7 @@ unprofessional or unwelcome in the community.
8181
clarity around the nature of the violation and an explanation of why the
8282
behavior was inappropriate. A public apology may be requested.
8383

84-
### 2. Warning
84+
2. ### Warning
8585

8686
**Community Impact**: A violation through a single incident or series
8787
of actions.
@@ -93,7 +93,7 @@ includes avoiding interactions in community spaces as well as external channels
9393
like social media. Violating these terms may lead to a temporary or
9494
permanent ban.
9595

96-
### 3. Temporary Ban
96+
3. ### Temporary Ban
9797

9898
**Community Impact**: A serious violation of community standards, including
9999
sustained inappropriate behavior.
@@ -104,7 +104,7 @@ private interaction with the people involved, including unsolicited interaction
104104
with those enforcing the Code of Conduct, is allowed during this period.
105105
Violating these terms may lead to a permanent ban.
106106

107-
### 4. Permanent Ban
107+
4. ### Permanent Ban
108108

109109
**Community Impact**: Demonstrating a pattern of violation of community
110110
standards, including sustained inappropriate behavior, harassment of an
@@ -115,6 +115,4 @@ the community.
115115

116116
## Attribution
117117

118-
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
119-
version 2.0, available at
120-
https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
118+
This Code of Conduct is adapted from the [Contributor Covenant](https://www.contributor-covenant.org/version/2/0/code_of_conduct.html) version 2.0.

CONTRIBUTING.md

+24-24
Original file line numberDiff line numberDiff line change
@@ -35,112 +35,112 @@
3535
_The Event will end on **20 November 2020**.
3636
We will provide a **certificate** of contribution to the participant with at least **one pull request merged.**_
3737

38-
**Mentors/Maintainers of the project:-**
39-
- @tejan-singh
40-
- @yashaswibiyahut
41-
- @balapriyac
38+
**Mentors/Maintainers of the project:-**
39+
- @tejan-singh
40+
- @yashaswibiyahut
41+
- @balapriyac
4242
- @SANKET7738
4343

44-
**_For queries regarding registration, participation, certification and rewards, reach out for help at_
44+
**_For queries regarding registration, participation, certification and rewards, reach out for help at_
4545
4646

4747
## Fork this repository 🚀
4848

4949
Fork this repository by clicking on the fork button on the top of this page.
5050
This will create a copy of this repository in your account.
5151

52-
<img src="https://user-images.githubusercontent.com/56690856/96425111-453c6380-1219-11eb-80f4-f46a0371ed2e.png">
52+
![forking](https://user-images.githubusercontent.com/56690856/96425111-453c6380-1219-11eb-80f4-f46a0371ed2e.png)
5353

5454
## Clone the repository 🏁
5555

5656
Now clone the forked repository to your machine. Go to your GitHub account, open the forked repository, click on the code button and then click the _copy to clipboard_ icon.
5757

58-
<img src="https://user-images.githubusercontent.com/56690856/96425484-b24ff900-1219-11eb-9cf0-58053ee8b758.png">
58+
![cloning](https://user-images.githubusercontent.com/56690856/96425484-b24ff900-1219-11eb-9cf0-58053ee8b758.png)
5959

6060
Open a terminal and run the following git command:
6161

62-
```
62+
```bash
6363
git clone "url you just copied"
6464
```
6565

6666
where "url you just copied" (without the quotation marks) is the url to this repository (your fork of this project). See the previous steps to obtain the url.
6767

6868
For example:
6969

70-
```
70+
```bash
7171
git clone https://github.com/sanscript-tech/hacking-tools-scripts
7272
```
7373

74-
<img src="https://user-images.githubusercontent.com/56690856/96425961-3ace9980-121a-11eb-8516-8235782e86f9.png">
74+
![cloning to local](https://user-images.githubusercontent.com/56690856/96425961-3ace9980-121a-11eb-8516-8235782e86f9.png)
7575

7676
## Create a branch ⚓
7777

7878
Change to the repository directory on your computer (if you are not already there):
7979

80-
```
80+
```bash
8181
cd (filename)
8282
```
8383

84-
<img src="https://user-images.githubusercontent.com/56690856/96426111-6ea9bf00-121a-11eb-90e3-8ccc7183a6c0.png">
84+
![set working directory](https://user-images.githubusercontent.com/56690856/96426111-6ea9bf00-121a-11eb-90e3-8ccc7183a6c0.png)
8585

8686
Now create a branch using the `git checkout` command:
8787

88-
```
88+
```bash
8989
git checkout -b your-new-branch-name
9090
```
9191

9292
For example:
9393

94-
```
94+
```bash
9595
git checkout -b dev_username
9696
```
9797

98-
<img src="https://user-images.githubusercontent.com/56690856/96426659-2a6aee80-121b-11eb-81f3-d616ae00229d.png">
98+
![checking out to new branch](https://user-images.githubusercontent.com/56690856/96426659-2a6aee80-121b-11eb-81f3-d616ae00229d.png)
9999

100100
## Make necessary changes and commit those changes 🚏
101101

102102
Do the necessary changes.
103103

104104
If you go to the project directory and execute the command `git status`, you'll see there are changes.
105-
<img src="https://user-images.githubusercontent.com/56690856/96426834-6736e580-121b-11eb-9211-8b26715921ae.png">
105+
![making changes](https://user-images.githubusercontent.com/56690856/96426834-6736e580-121b-11eb-9211-8b26715921ae.png)
106106

107107
Add those changes to the branch you just created using the `git add` command:
108108

109-
```
109+
```bash
110110
git add .
111111
```
112112

113-
<img src="https://user-images.githubusercontent.com/56690856/96427459-34412180-121c-11eb-9fa1-72cdaeae61f3.png">
113+
![add changes](https://user-images.githubusercontent.com/56690856/96427459-34412180-121c-11eb-9fa1-72cdaeae61f3.png)
114114

115115
Now commit those changes using the `git commit` command:
116116

117-
```
117+
```bash
118118
git commit -m "(Add your message here)"
119119
```
120120

121121
replacing `<Add your message here>` with your message.
122122

123-
<img src="https://user-images.githubusercontent.com/56690856/96427464-35724e80-121c-11eb-91c2-20001f5def5a.png">
123+
![commit changes](https://user-images.githubusercontent.com/56690856/96427464-35724e80-121c-11eb-91c2-20001f5def5a.png)
124124

125125
## Push changes to GitHub 🪂
126126

127127
Push your changes using the command `git push`:
128128

129-
```
129+
```bash
130130
git push origin <branch-name>
131131
```
132132

133133
replacing `<branch-name>` with the name of the branch you created earlier.
134134

135-
<img src="https://user-images.githubusercontent.com/56690856/96427466-360ae500-121c-11eb-9c02-e201906a0a72.png">
135+
![push changes](https://user-images.githubusercontent.com/56690856/96427466-360ae500-121c-11eb-9c02-e201906a0a72.png)
136136

137137
## Submit your changes for review 🚩
138138

139139
If you go to your repository on GitHub, you'll see a `Compare & pull request` button. Click on that button.
140-
<img src="https://user-images.githubusercontent.com/56690856/96427945-ce08ce80-121c-11eb-9223-a120c7d72541.png">
140+
![create PR](https://user-images.githubusercontent.com/56690856/96427945-ce08ce80-121c-11eb-9223-a120c7d72541.png)
141141

142142
Now submit the pull request.
143143

144-
<img src="https://user-images.githubusercontent.com/56690856/96427954-cfd29200-121c-11eb-90f7-1f4ea2f8342f.png"><br><br>
144+
![submit PR](https://user-images.githubusercontent.com/56690856/96427954-cfd29200-121c-11eb-90f7-1f4ea2f8342f.png)
145145

146146
Soon we will be merging all your changes into the master branch of this project. You will get a notification email once the changes have been merged.

README.md

+7-9
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
[![forthebadge](https://forthebadge.com/images/badges/thats-how-they-get-you.svg)](https://forthebadge.com)
1010
[![forthebadge](https://forthebadge.com/images/badges/powered-by-black-magic.svg)](https://forthebadge.com)
1111

12-
<br>
13-
1412
[![GitHub issues](https://img.shields.io/github/issues/sanscript-tech/hacking-tools-scripts?style=flat-square)](https://github.com/sanscript-tech/hacking-tools-scripts/issues)
1513
[![GitHub forks](https://img.shields.io/github/forks/sanscript-tech/hacking-tools-scripts?style=flat-square)](https://github.com/sanscript-tech/hacking-tools-scripts/network)
1614
![GitHub pull requests](https://img.shields.io/github/issues-pr/sanscript-tech/hacking-tools-scripts?color=green&style=flat-square)
@@ -32,18 +30,18 @@ Collection of awesome scripts and hacking tools from basic to advance. Contribut
3230

3331
<p align="center"><img src="https://media.giphy.com/media/Rje6bsoJVORnLBfZwP/giphy.gif" alt="Logo" width="300" height="300"> <img src="https://media.giphy.com/media/HoffxyN8ghVuw/giphy.gif" width="300" height="300">
3432

35-
## Overview
33+
## Overview
3634
This project is mainly ensured to build in an open source community to help the people of our country grow and develop themselves.
37-
38-
## Tech stacks used
35+
36+
## Tech stacks used
3937

4038
**Any Scripting Language**
4139

4240
## How to participate and contribute?
43-
### Register as a participant on [**Sanscript India**](https://sanscript.tech) website and start contributing.***(Registrations are Open!!)***<br>
44-
### Follow contribution guidelines mentioned [here.](https://github.com/sanscript-tech/hacking-tools-scripts/blob/main/CONTRIBUTING.md)<br>
45-
### Contributions will end on ***20 November 2020***.
46-
41+
* Register as a participant on [**Sanscript India**](https://sanscript.tech) website and start contributing. ***Registrations are Open!!***
42+
* Follow contribution guidelines mentioned [here.](https://github.com/sanscript-tech/hacking-tools-scripts/blob/main/CONTRIBUTING.md)
43+
* Contributions will end on ***20 November 2020***.
44+
4745

4846
### This project is under AOS 2020 (Autumn open source program) under Sanscript, India.
4947

0 commit comments

Comments
 (0)