I’m just trying to find more information about
Blaze.render
and I searched the entire documentation but couldn’t find it.
A search would have helped! Please and thank you!
I’m just trying to find more information about
Blaze.render
and I searched the entire documentation but couldn’t find it.
A search would have helped! Please and thank you!
Just go the docs site, make sure your cursor focus is anywhere on the page, and start typing - the search will come up.
I would still like to see versioned documentation… I’m still on 1.1.0.3 with no access to online documentation. All other framework documentation seem to have versioning from what I’ve seen.
Actually, the full docs site is included with the Meteor source (for each version), and is a runnable Meteor app. For example, to run the docs locally for 1.1.0.3:
git clone https://github.com/meteor/meteor.git
cd meteor; git checkout release/METEOR@1.1.0.3
cd docs
meteor
Then you’ll have the 1.1.0.3 docs running locally at the usual http://localhost:3000.
Also, if you go to docs.meteor.com and Ctrl-F for “Blaze.render” it’s the first result that shows up.
I’m probably responsible for a lot of flaws in the docs site, but redoing it isn’t quite a priority right now. That’s actually one of the motivators of the Meteor Guide project - pulling out all of the surrounding text from the docs, so we can turn it into an efficient API browser instead.
Thank you guys, also on the left their is a drop down for full API, the basic documentation has no reference to blaze.render!