Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions contributing/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ We actively welcome your PRs. However, before working on changes, you must ensur

2. Run and check your changes locally. Ensure that everything works as it should.

3. Follow the [Markdown Style Guide](./markdown-style-guide.md) for consistent formatting in documentation changes.

### Submitting a PR Template

1. Ensure that you address one issue in one PR. <br> If you work on multiple issues, work on them separately and create one PR to address each issue.
Expand Down
70 changes: 70 additions & 0 deletions contributing/markdown-style-guide.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
# Markdown Style Guide

This guide outlines the standards for Markdown formatting in this repository to ensure consistency, readability, and maintainability.

## Headings

- Use ATX-style headings: `#` for level 1, `##` for level 2, etc.
- Always include a space after the `#`.
- Example:
```
# Main Title
## Subsection
```

## Lists

- Use `-` for unordered lists.
- Use `1. 2.` for ordered lists.
- Indent sublists with 2 spaces.
- Example:
```
- Item 1
- Subitem
1. First
2. Second
```

## Code Blocks

- Use fenced code blocks with triple backticks (```).
- Specify the language for syntax highlighting when possible.
- Do not indent top-level code blocks.
- For code blocks inside list items, indent the entire block with 4 spaces.
- Example:
```
```bash
echo "Hello"
```
```

## Links

- Use inline link style: `[text](url)`
- Example: `[Open Source](https://opensource.org/)`

## Emphasis

- Use `**text**` for bold.
- Use `*text*` for italic.
- Use `` `text` `` for inline code.

## Images

- Use `![alt text](path/to/image.png)`

## Tables

- Use Markdown table syntax with pipes and dashes.
- Example:
```
| Header 1 | Header 2 |
|----------|----------|
| Cell 1 | Cell 2 |
```

## Miscellaneous

- Use consistent spacing and indentation throughout.
- Avoid trailing spaces.
- Use blank lines to separate sections for readability.
14 changes: 7 additions & 7 deletions docs/becoming-a-maintainer/getting-practical.md
Original file line number Diff line number Diff line change
Expand Up @@ -337,13 +337,13 @@ body:
- Select the type of issue you want to create. In this example, we'll select Feature Request.
- Write your issue. If you're following along the example, we'll write a feature request for a new resource:

```markdown
**Type of feature:** 🍕 Feature
**Current behavior:** I'd like to see a new resource for #100DaysOfOSS.
**Suggested solution:** Add a new resource that introduces people to open source through [#100DaysOfOSS](https://opensauced.pizza/docs/community/100-days-of-oss/).
**Code of Conduct:** I agree to follow this project's Code of Conduct.
**Contributing Docs:** I agree to follow this project's Contribution Docs.
```
```markdown
**Type of feature:** 🍕 Feature
**Current behavior:** I'd like to see a new resource for #100DaysOfOSS.
**Suggested solution:** Add a new resource that introduces people to open source through [#100DaysOfOSS](https://opensauced.pizza/docs/community/100-days-of-oss/).
**Code of Conduct:** I agree to follow this project's Code of Conduct.
**Contributing Docs:** I agree to follow this project's Contribution Docs.
```

- Once you've completed the issues, click "Submit new issue."

Expand Down
18 changes: 9 additions & 9 deletions docs/intro-to-oss/tools-to-be-successful.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ To get started with Git and GitHub, follow these steps:

2. **Configure Git**: After installing Git, open a terminal or command prompt and configure your Git user information by running the following commands:

```bash
git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"
```
```bash
git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"
```

Replace `Your Name` with your full name and `your.email@example.com` with the email address you used to sign up for GitHub.
Replace `Your Name` with your full name and `your.email@example.com` with the email address you used to sign up for GitHub.

#### Practicing Contributing with VS Code

Expand All @@ -72,11 +72,11 @@ To practice using GitHub, we're going to walk through creating a repository, clo

2. **Clone the repository**: Once you have created a new repository, you can clone it to your local machine by running the following command in your terminal or command prompt:

```bash
git clone https://github.com/YOUR-USERNAME/REPOSITORY-NAME.git
```
```bash
git clone https://github.com/YOUR-USERNAME/REPOSITORY-NAME.git
```

Replace "YOUR-USERNAME" with your GitHub username and "REPOSITORY-NAME" with `practice-repository`.
Replace "YOUR-USERNAME" with your GitHub username and "REPOSITORY-NAME" with `practice-repository`.

3. **Access your repository in your code editor**: For this example, we're using VS Code. Open VS Code, navigate to the file tab, and then open your `practice-repository`.

Expand Down
Loading