Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Grammatical fixes, gitignore expansion, issue workflow improvement #53

Merged
merged 3 commits into from
Dec 27, 2024
Merged
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
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/add-new-function.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ The instructions about defining the file's name are documented in the `CONTRIBUT


## Description
Function name: example `phpversion()`
Function name: `phpversion()`
Function description: ...
File name: example `src/content/docs/01-system/01-sys-phpversion.md`
File name: `src/content/docs/01-system/01-sys-phpversion.md`

## Checklist
- [ ] create the file with the proper name
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ dist/
# generated types
.astro/
.vscode/
.idea/

# dependencies
node_modules/
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The functions are grouped into topics:
Each function is explained with the description, and examples in markdown files in the `src/content/docs` directory.

## The file name convention
We have all the Markdown files in the `src/content/docs` directory where you can find the folders for each topic (`00-intro`, `01-system`, `02-array`, etc.
We have all the Markdown files in the `src/content/docs` directory where you can find the folders for each topic (`00-intro`, `01-system`, `02-array`, etc.)
Each topic ( Intro, System, Array) has a specific folder with the format

- 2 digits (00 , 01) as topic identifier (progressive number)
Expand Down