cruddy / ace
There is no license information available for the latest version (v0.5.0) of this package.
An ACE editor for Cruddy.
v0.5.0
2015-12-22 06:02 UTC
Requires
- php: >=5.5.9
- illuminate/support: 5.1 - 5.2
- kalnoy/cruddy: 0.5.*
This package is auto-updated.
Last update: 2026-03-07 00:17:11 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');