Sha256: 4c52c8df3a100e70a4d325f30f62c8c23e7432533734ced379ae481314b634f2

Contents?: true

Size: 812 Bytes

Versions: 1

Compression:

Stored size: 812 Bytes

Contents

HappySeed Ckeditor Email Install
=================

### What does this do?

* Includes ckeditor, a WYSIWYG editor for adding html to your documents. For a detailed explanation of everything you can do with ckeditor see the documentation for the gem [here.](https://github.com/galetahub/ckeditor)


### Why do you want this?

Easy html body editor for when you need to add html content through your admin panel/form/etc. Ckeditor is a great solution for this and makes it very easy.

### Environment Variables

n/a

### What needs to be done?

Pass in :ckeditor to simple_form.

```
$ rails g scaffold post title:string body:text 
```

```
= simple_form_for(@post) do |f|
  = f.error_notification

  .form-inputs
    = f.input :title
    = f.input :body, as: :ckeditor

  .form-actions
    = f.button :submit
```

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
happy_seed-0.0.21 lib/generators/happy_seed/ckeditor/templates/docs/README.01.ckeditor.rdoc