diff --git a/docs/client/basic/packages.md b/docs/client/basic/packages.md index 8aa72838c0..8380eb24bc 100644 --- a/docs/client/basic/packages.md +++ b/docs/client/basic/packages.md @@ -2,7 +2,7 @@ # Packages -Meteor is all about splitting functionality into modular packages. In addition +All of Meteor's functionality is implemented in modular packages. In addition to the core packages documented above, there are many others that you can add to your app to enable useful functionality. diff --git a/docs/client/basic/toc.js b/docs/client/basic/toc.js index aaeec68231..21ca6fe64f 100644 --- a/docs/client/basic/toc.js +++ b/docs/client/basic/toc.js @@ -94,12 +94,12 @@ var sections = [ items: [ item("Meteor.isClient"), item("Meteor.isServer"), - item("meteor.startup") + item("Meteor.startup") ] }), section("Packages", { id: "packages", - subtitle: "There are thousands of Meteor packages available", + subtitle: "Choose from thousands of community packages", items: [ item("Searching for packages", {id: "searchingforpackages"}), item("accounts-ui", {id: "accountsui"}), diff --git a/docs/client/docs.less b/docs/client/docs.less index 14bdb8489e..444ece8341 100644 --- a/docs/client/docs.less +++ b/docs/client/docs.less @@ -576,3 +576,29 @@ pre { font-size: 0.9em; text-decoration: underline !important; } + +@media print { + body { + font-size: 10pt; + } + + code, pre { + font-size: 8pt; + } + + #nav { + display: none; + } + + .main-content { + position: relative; + height: auto; + margin: 0; + left: 0; + top: 0; + } + + .top-bar { + display: none; + } +}