At Reaction Commerce, we're dedicated to the open source community. In fact, we've designed our entire platform and business to grow from the passion and creativity that an open source community ignites. We've already attracted a small, dedicated team of open source contributors, and there's always room for more.
If you'd like to join us, check out our detailed Contributing Guide.
- Click on
Edit on GitHubfrom any Reaction Commerce documentation page. - Click on the 🖊️ to enter edit mode.
- Make changes and commit changes with the
Create a new branch for this commit and start a pull request.option. - Make a pull request against the
masterbranch.
Reaction Docs uses remark-lint for linting Markdown style:
- Install command-line tool:
npm install remark-lintand runnpm run lintornpm run lint-fix - Install a code editor integration: linter-markdown for Atom and more supported editors.
- To link from one documentation page to another, always use
.mdfile extension:
[Store Operator Guide](/admin/dashboard.md)
Example: Store Operator Guide
- To link to a specific point within the same page, use a
#anchor tag:
[Testing](#testing)
Example: Testing
- To link to a specific point in a different page, use both
.mdand#:
[Variable naming convention](/developer/contributing/styleguide.md#variables)
Example: Variable naming convention