You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Built on top of [base](https://github.com/node-base/base) and [templates](https://github.com/jonschlinkert/templates), assemble-core is used in [assemble](https://github.com/assemble/assemble) to provide the baseline features and API necessary for rendering templates, working with the file system, and running tasks.
13
13
@@ -121,17 +121,17 @@ app.page('foo', {content: 'Hi, my name is <%= name %>'})
121
121
122
122
Create an `assemble` application. This is the main function exported by the assemble module.
123
123
124
-
**Params**
125
-
126
-
*`options`**{Object}**: Optionally pass default options to use.
127
-
128
124
**Example**
129
125
130
126
```js
131
127
var assemble =require('assemble');
132
128
var app =assemble();
133
129
```
134
130
131
+
**Params**
132
+
133
+
*`options`**{Object}**: Optionally pass default options to use.
134
+
135
135
***
136
136
137
137
### File System API
@@ -217,7 +217,7 @@ Assemble has the following methods for running tasks and controlling workflows:
217
217
218
218
#### .task
219
219
220
-
Define a task. Tasks are functions that are stored on a `tasks` object, allowing them to be called later by the [build](#build) method. (the [CLI][assemble-cli] calls [build](#build) to run tasks)
220
+
Define a task. Tasks are functions that are stored on a `tasks` object, allowing them to be called later by the [build](#build) method. (the [CLI](https://github.com/assemble/assemble-cli) calls [build](#build) to run tasks)
221
221
222
222
**Params**
223
223
@@ -290,7 +290,7 @@ assemble-core is a standalone application that was created using applications an
290
290
**Plugins**
291
291
292
292
*[assemble-fs](https://github.com/assemble/assemble-fs): adds support for using [gulp](http://gulpjs.com) plugins and working with the file system
293
-
*[assemble-streams](https://github.com/assemble/assemble-streams): adds support for pushing views and view collections into a [vinyl](http://github.com/gulpjs/vinyl) stream
293
+
*[assemble-streams](https://github.com/assemble/assemble-streams): adds support for pushing views and view collections into a [vinyl](https://github.com/gulpjs/vinyl) stream
294
294
*[base-task](https://github.com/node-base/base-task): adds flow control methods
295
295
296
296
## About
@@ -319,7 +319,7 @@ $ npm install -d && npm test
319
319
320
320
Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).
321
321
322
-
Please read the [contributing guide](contributing.md) for avice on opening issues, pull requests, and coding standards.
322
+
Please read the [contributing guide](.github/contributing.md) for avice on opening issues, pull requests, and coding standards.
323
323
324
324
If Assemble doesn't do what you need, [please let us know](../../issues).
325
325
@@ -344,6 +344,13 @@ Custom labels used in this changelog:
344
344
345
345
Please [let us know](../../issues) if any of the following heading links are broken. Thanks!
0 commit comments