|
| 1 | +# Contributing to PowerShell.org |
| 2 | + |
| 3 | +Thanks for your interest in contributing! There are two main ways to contribute content. |
| 4 | + |
| 5 | +## Submitting a Guest Blog Post |
| 6 | + |
| 7 | +### Option A: Submit via GitHub Issue (easiest) |
| 8 | + |
| 9 | +If you're not comfortable with Git, you can pitch or submit your article through our issue template: |
| 10 | + |
| 11 | +1. Go to [New Issue](https://github.com/PowerShellOrg/PowerShellOrgWebsite/issues/new?template=guest-blog-post.yml) |
| 12 | +2. Fill out the form with your article title, summary, and content |
| 13 | +3. A maintainer will review and publish it |
| 14 | + |
| 15 | +### Option B: Submit via Pull Request |
| 16 | + |
| 17 | +1. Fork this repository |
| 18 | +2. Create a new branch for your article |
| 19 | +3. Add your article as a Markdown file in `content/articles/` using this naming convention: |
| 20 | + |
| 21 | + ``` |
| 22 | + content/articles/YYYY-MM-DD-your-article-slug.md |
| 23 | + ``` |
| 24 | + |
| 25 | +4. Use this front matter template: |
| 26 | + |
| 27 | + ```yaml |
| 28 | + --- |
| 29 | + title: "Your Article Title" |
| 30 | + author: Your Name |
| 31 | + authors: |
| 32 | + - Your Name |
| 33 | + date: "YYYY-MM-DDT00:00:00+00:00" |
| 34 | + categories: |
| 35 | + - Category Name |
| 36 | + tags: |
| 37 | + - tag1 |
| 38 | + - tag2 |
| 39 | + --- |
| 40 | + |
| 41 | + Your article content in Markdown goes here. |
| 42 | + ``` |
| 43 | + |
| 44 | +5. Submit a pull request with a brief description of your article |
| 45 | + |
| 46 | +### Writing Tips |
| 47 | + |
| 48 | +- Write in Markdown |
| 49 | +- Use fenced code blocks with language hints (e.g., ` ```powershell `) for code samples |
| 50 | +- Keep titles concise and descriptive |
| 51 | +- Include a brief intro that tells readers what they'll learn |
| 52 | +- Test any code examples before submitting |
| 53 | + |
| 54 | +## Submitting a Community Event |
| 55 | + |
| 56 | +Add your PowerShell-related event to our community calendar: |
| 57 | + |
| 58 | +1. Go to [New Event](https://github.com/PowerShellOrg/PowerShellOrgWebsite/issues/new?template=community-event.yml) |
| 59 | +2. Fill out the event details |
| 60 | +3. A maintainer will add it to the calendar |
| 61 | + |
| 62 | +## Reporting Issues |
| 63 | + |
| 64 | +Found a bug or broken link? [Open an issue](https://github.com/PowerShellOrg/PowerShellOrgWebsite/issues/new) and let us know. |
| 65 | + |
| 66 | +## Code of Conduct |
| 67 | + |
| 68 | +Be kind, be helpful, be respectful. We're all here because we love PowerShell. |
0 commit comments