jonschlinkert/sublime-monokai-extended

before-after-markdown

jonschlinkert opened this issue · 2 comments

(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

Before

image

After

image

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.