We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(return to getting started)
Markdown Extended adds support for syntax highlighting inside GFM blocks, YAML front matter, and more.
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
adding the fixture text for future comparisons
title: Classes description: Core classes exposed on Assemble category: docs
Create an instance of assemble with the given options.
assemble
options
Example
var assemble = require('assemble'); var app = assemble();
Sugar for:
var Assemble = require('assemble'); var app = new Assemble();
Create an instance of Collection with the given options.
Collection
var Collection = app.Collection; var collection = new Collection();
Learn more about Collect.
Create an instance of Group with the given options.
Group
var Group = app.Group; var group = new Group();
Learn more about Group.
Create an instance of Item with the given options.
Item
var Item = app.Item; var item = new Item();
Learn more about Item.
Create an instance of List with the given options.
List
var List = app.List; var list = new List();
Learn more about List.
Create an instance of Views with the given options.
Views
var Views = app.Views; var views = new Views();
Learn more about Views.
Create an instance of View with the given options.
View
var View = app.View; var view = new View();
Learn more about View.
Create an instance of Router with the given options.
Router
var Router = app.Router; var router = new Router();
Learn more about Router.
Create an instance of Route with the given options.
Route
var Route = app.Route; var route = new Route();
Learn more about Route.
No branches or pull requests
(return to getting started)
Plain text
## With Monokai-Extended
## With Monokai-Extended + [Markdown Extended](https://github.com/jonschlinkert/sublime-markdown-extended)
Markdown Extended adds support for syntax highlighting inside GFM blocks, YAML front matter, and more.
The text was updated successfully, but these errors were encountered: