diff --git a/docs/client/api.html b/docs/client/api.html
index 7e4b19b8f5..05b44533ab 100644
--- a/docs/client/api.html
+++ b/docs/client/api.html
@@ -1,5 +1,5 @@
-{{#better_markdown}}
+{{#markdown}}
The Meteor API
@@ -1097,31 +1097,31 @@ applicable. If you only need to receive the fields that changed, see
added(document) or
addedAt(document, atIndex, before)
-{{#better_markdown}}
+{{#markdown}}
A new document `document` entered the result set. The new document
appears at position `atIndex`. It is immediately before the document
whose `_id` is `before`. `before` will be `null` if the new document
is at the end of the results.
-{{/better_markdown}}
+{{/markdown}}
changed(newDocument, oldDocument)
or
changedAt(newDocument, oldDocument, atIndex)
-{{#better_markdown}}
+{{#markdown}}
The contents of a document were previously `oldDocument` and are now
`newDocument`. The position of the changed document is `atIndex`.
-{{/better_markdown}}
+{{/markdown}}
removed(oldDocument)
or
removedAt(oldDocument, atIndex)
-{{#better_markdown}}
+{{#markdown}}
The document `oldDocument` is no longer in the result set. It used to be at position `atIndex`.
-{{/better_markdown}}
+{{/markdown}}
{{#dtdd "movedTo(document, fromIndex, toIndex, before)"}}
@@ -1162,12 +1162,12 @@ result set, not the entire contents of the document that changed.
or
addedBefore(id, fields, before)
-{{#better_markdown}}
+{{#markdown}}
A new document entered the result set. It has the `id` and `fields`
specified. `fields` contains all fields of the document excluding the
`_id` field. The new document is before the document identified by
`before`, or at the end if `before` is `null`.
-{{/better_markdown}}
+{{/markdown}}
{{#dtdd "changed(id, fields)"}}
@@ -3003,11 +3003,11 @@ by spammers.)
'Hello from Meteor!',
'This is a test of Email.send.');
-{{/better_markdown}}
+{{/markdown}}
Assets
-{{#better_markdown}}
+{{#markdown}}
`Assets` allows server code in a Meteor application to access static server
assets, which are located in the `private` subdirectory of an application's
tree.
@@ -3021,7 +3021,7 @@ directory called `nested` with a file called `data.txt` inside it, then server
code can read `data.txt` by running:
var data = Assets.getText('nested/data.txt');
-{{/better_markdown}}
+{{/markdown}}
@@ -3040,7 +3040,7 @@ code can read `data.txt` by running:
-{{#each descr}}{{#better_markdown}}{{{this}}}{{/better_markdown}}{{/each}}
+{{#each descr}}{{#markdown}}{{{this}}}{{/markdown}}{{/each}}
{{#if args}}
@@ -3054,7 +3054,7 @@ code can read `data.txt` by running:
{{/if}}
{{#if content}}
-{{#better_markdown}}{{> content}}{{/better_markdown}}
+{{#markdown}}{{> content}}{{/markdown}}
{{/if}}
@@ -3074,7 +3074,7 @@ code can read `data.txt` by running:
{{{type}}}
{{/if}}
-{{#better_markdown}}{{{descr}}}{{/better_markdown}}
+{{#markdown}}{{{descr}}}{{/markdown}}
{{/each}}
diff --git a/docs/client/commandline.html b/docs/client/commandline.html
index e14a342b9d..fb642598e6 100644
--- a/docs/client/commandline.html
+++ b/docs/client/commandline.html
@@ -1,6 +1,6 @@
-{{#better_markdown}}
+{{#markdown}}
{{#api_section "commandline"}}Command line{{/api_section}}
@@ -188,6 +188,6 @@ instead of deploying to Meteor's servers. You will have to deal with
logging, monitoring, backups, load-balancing, etc, all of which we
handle for you if you use `meteor deploy`.
-{{/better_markdown}}
+{{/markdown}}
diff --git a/docs/client/concepts.html b/docs/client/concepts.html
index 4dde25943c..b76bfebe8d 100644
--- a/docs/client/concepts.html
+++ b/docs/client/concepts.html
@@ -21,7 +21,7 @@ when writing those apps.
-{{#better_markdown}}
+{{#markdown}}
What is Meteor?
@@ -69,11 +69,11 @@ In Meteor 1.0, the `meteor` build tool will have full support for
Atmosphere.
{{/note}}
-{{/better_markdown}}
+{{/markdown}}
-{{#better_markdown}}
+{{#markdown}}
Structuring your application
@@ -170,11 +170,11 @@ These rules stack, so that within `lib`, for example, files are still
loaded in alphabetical order; and if there are multiple files named
`main.js`, the ones in subdirectories are loaded earlier.
-{{/better_markdown}}
+{{/markdown}}
-{{#better_markdown}}
+{{#markdown}}
Data and security
@@ -350,11 +350,11 @@ and publish functions validate all of their arguments. Just run
method or publish function which skips `check`ing any of its arguments will fail
with an exception.
-{{/better_markdown}}
+{{/markdown}}
-{{#better_markdown}}
+{{#markdown}}
Reactivity
@@ -417,11 +417,11 @@ Meteor's
is a package called [`Deps`](#deps) that is fairly short and straightforward.
You can use it yourself to implement new reactive data sources.
-{{/better_markdown}}
+{{/markdown}}
-{{#better_markdown}}
+{{#markdown}}
Live HTML
@@ -488,11 +488,11 @@ preserve these elements even when their enclosing template is
rerendered, but will still update their children and copy over any
attribute changes.
-{{/better_markdown}}
+{{/markdown}}
-{{#better_markdown}}
+{{#markdown}}
Templates
@@ -640,11 +640,11 @@ discussion.
> Session.set("weather", "cool and dry");
In DOM: It'll be cool and dry tonight
-{{/better_markdown}}
+{{/markdown}}
-{{#better_markdown}}
+{{#markdown}}
Using packages
@@ -681,12 +681,12 @@ are willing to brave the fact that the Meteor package format is not
documented yet and will change significantly before Meteor 1.0. See
[Writing Packages](#writingpackages).
-{{/better_markdown}}
+{{/markdown}}
-{{#better_markdown}}
+{{#markdown}}
Namespacing
@@ -775,12 +775,12 @@ certainly shouldn't depend on this quirk, and in the future Meteor may
check for it and throw an error if you do.
{{/note}}
-{{/better_markdown}}
+{{/markdown}}
-{{#better_markdown}}
+{{#markdown}}
Deploying
@@ -846,12 +846,12 @@ have `npm` available, and run the following:
$ npm install fibers@1.0.1
{{/warning}}
-{{/better_markdown}}
+{{/markdown}}
-{{#better_markdown}}
+{{#markdown}}
Writing packages
@@ -950,5 +950,5 @@ quick tips:
machine architecture, but if not your built Meteor package will be
portable.
-{{/better_markdown}}
+{{/markdown}}
diff --git a/docs/client/docs.html b/docs/client/docs.html
index eed9a7dfc3..33f870b00f 100644
--- a/docs/client/docs.html
+++ b/docs/client/docs.html
@@ -22,10 +22,6 @@