You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
544 B
Markdown
38 lines
544 B
Markdown
2 years ago
|
# Contributing
|
||
|
|
||
|
## Entries
|
||
|
|
||
|
Start every new entry with
|
||
|
```markdown
|
||
|
---
|
||
|
title: An Important Entry ✅
|
||
|
---
|
||
|
|
||
|
Content
|
||
|
```
|
||
|
|
||
|
NOT
|
||
|
|
||
|
```markdown
|
||
|
---
|
||
|
title: An Important Entry
|
||
|
---
|
||
|
|
||
|
# An Important Entry ❌
|
||
|
|
||
|
Content
|
||
|
```
|
||
|
|
||
|
## Filenames
|
||
|
|
||
|
Use Kebab case for filenames
|
||
|
| ❌ | ✅ |
|
||
|
| :------------------: |:--------------------:|
|
||
|
| `an_important_entry` | `an-important-entry` |
|
||
|
|
||
|
Ignore for directories for now
|
||
|
|
||
|
## Directories
|
||
|
|
||
|
Do not create directories any deeper than 1. Only top level directories for different projects.
|