title | order | description |
---|---|---|
Contribution Guidelines |
1000 |
Tips for contributing to the Meteor Guide. |
Please submit clarifications and improvements to the Guide! If it's just a small fix, go ahead and open a PR. If it's something more major, please file an issue for discussion first.
If you are adding significant new content, please take a moment to include an update to the changelog in your PR.
Things to be aware of:
// bad
## Using schemas with collections
// good
<h2 id="schemas-with-collections">Using schemas with collections</h2>
Article titles are Title Case
, and headers are Sentence case
.
Otherwise, the following paragraph isn't parsed correctly.
// bad
<h2 id="schemas-with-collections">Using schemas with collections</h2>
This is some text
// good
<h2 id="schemas-with-collections">Using schemas with collections</h2>
This is some text
Note: you don't need to escape things in fenced/multiline code snippets, only in inline ones.
// will break
Render multiple items in your template with `{{#each}}`
// good
Render multiple items in your template with `{% raw %}{{#each}}{% endraw %}`
The site is built using hexo, a static site generator. To run it locally, perform the following steps:
git submodule update --init --recursive
cd site
npm install
npm start