Skip to content

adoultremont/guide

This branch is 781 commits behind meteor/guide:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

3c84dae Â· Mar 31, 2016
Mar 31, 2016
Mar 29, 2016
Mar 30, 2016
Dec 1, 2015
Dec 4, 2015
Jan 5, 2016
Dec 17, 2015
Nov 18, 2015
Mar 26, 2016
Oct 12, 2015
Mar 26, 2016
Oct 6, 2015

Repository files navigation

Meteor Guide

Articles drafted

Contributing

If you're interested in helping out, the best thing to do is to look at the GitHub issues which represent the guide articles. If any topics interest you, read the outlines and major decision points linked from the issue, and post comments or PRs offering suggestions!

Writing tips

Things to be aware of:

Always use specific IDs on headers so that we can change them later:

// bad
## Using schemas with collections

// good
<h2 id="schemas-with-collections">Using schemas with collections</h2>

Always put a blank line after each header

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

Escape handlebars syntax inside inline code snippets

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 %}`

About

📖 Articles about Meteor best practices

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CSS 67.7%
  • JavaScript 32.3%