forked frommeteor/guide
- Notifications
You must be signed in to change notification settings - Fork0
Articles about Meteor best practices
License
NotificationsYou must be signed in to change notification settings
tomRedox/guide
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
- See the example app we're working to embody the principles from the guide atmeteor/todos
- Check out theoutlines and discussions
- Check out thelive site
If you're interested in helping out, the best thing to do is to look at theGitHub 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!
Things to be aware of:
// bad## Using schemas with collections// good<h2>Using schemas with collections</h2>
Otherwise, the following paragraph isn't parsed correctly.
// bad<h2>Using schemas with collections</h2>This is some text// good<h2>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 breakRender multiple items in your template with `{{#each}}`// goodRender multiple items in your template with `{% raw %}{{#each}}{% endraw %}`