cruddy/ace

There is no license information available for the latest version (v0.5.0) of this package.

An ACE editor for Cruddy.

Maintainers

Details

github.com/cruddy/ace

Source

Issues

Installs: 200

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Language:JavaScript

v0.5.0 2015-12-22 06:02 UTC

This package is auto-updated.

Last update: 2024-04-06 19:58:59 UTC


README

ACE editor support for Cruddy with special markdown editor.

Installation

composer require cruddy/ace:~0.5.*

Include a service provider:

'Kalnoy\Cruddy\Ace\AceServiceProvider',

Publish assets and config files:

php artisan vendor:publish --provider="Kalnoy\Cruddy\Ace\AceServiceProvider"

Usage

$schema->code('description')->mode('html');

Setting the height of the editor:

$schema->code('description')->height(300);

Toggling off wordwrap mode:

$schema->code('description')->wordwrap(false);

Markdown editor:

$schema->markdown('description');