Skip to content
New issue

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

before-after-markdown #4

Closed
jonschlinkert opened this issue Jul 17, 2013 · 2 comments
Closed

before-after-markdown #4

jonschlinkert opened this issue Jul 17, 2013 · 2 comments
Labels

Comments

@jonschlinkert
Copy link
Owner

jonschlinkert commented Jul 17, 2013

(return to getting started)

Plain text

screen shot 2016-04-30 at 2 30 24 am

## With Monokai-Extended

screen shot 2016-04-30 at 2 29 45 am

## 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.

screen shot 2016-04-30 at 2 30 42 am

@jonschlinkert
Copy link
Owner Author

Before

image

After

image

@jonschlinkert
Copy link
Owner Author

adding the fixture text for future comparisons



title: Classes
description: Core classes exposed on Assemble
category: docs

sortBy: 40

Classes

App

Create an instance of assemble with the given options.

Example

var assemble = require('assemble');
var app = assemble();

Sugar for:

var Assemble = require('assemble');
var app = new Assemble();

Collection

Create an instance of Collection with the given options.

Example

var Collection = app.Collection;
var collection = new Collection();

Learn more about Collect.

Group

Create an instance of Group with the given options.

Example

var Group = app.Group;
var group = new Group();

Learn more about Group.

Item

Create an instance of Item with the given options.

Example

var Item = app.Item;
var item = new Item();

Learn more about Item.

List

Create an instance of List with the given options.

Example

var List = app.List;
var list = new List();

Learn more about List.

Views

Create an instance of Views with the given options.

Example

var Views = app.Views;
var views = new Views();

Learn more about Views.

View

Create an instance of View with the given options.

Example

var View = app.View;
var view = new View();

Learn more about View.

Router

Create an instance of Router with the given options.

Example

var Router = app.Router;
var router = new Router();

Learn more about Router.

Route

Create an instance of Route with the given options.

Example

var Route = app.Route;
var route = new Route();

Learn more about Route.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant