schnawel007
schnawel007

Reputation: 4020

Bootstrap wysiwyg textarea editor working on Bootstrap 3

I'm looking for a wysiwyg textarea editor for Bootstrap 3. Everything I can find on Google only works with Bootstrap 2. Has anybody an good, simple wysiwyg Edtor for Bootstrap 3?

Upvotes: 20

Views: 75728

Answers (6)

shareef
shareef

Reputation: 9581

I recommend

http://www.web-forge.info/projects/materialNote

it has redo and undo ability and href , tables and media controlled smoothly plus there is fonts

how cool is that

Upvotes: 0

Sender
Sender

Reputation: 6858

Awesome Summernote

Super Simple WYSIWYG Editor on Bootstrap 3

<textarea name="summernote" id="summernote" cols="30" rows="10"></textarea> 

Call Summernote

$('#summernote').summernote({height: 300});

DEMO jsfiddle

Super Simple WYSIWYG Editor on Bootstrap 3

Upvotes: 44

jwzhao
jwzhao

Reputation: 1

To help the edit of HTML code under Bootstrap3 or Foundation framework, I have been developing a kind of intuitive but not wysiwyg app, not useful for design the CSS outlook, but can be used to easily change the layout: http://www.mkrrf-it.com/cloedit/

Upvotes: 0

Christian
Christian

Reputation: 4094

Just for the record. I added a fork of bootstrap-wysihtml5 to bower:

https://github.com/Waxolunist/bootstrap3-wysihtml5-bower

bower install bootstrap3-wysihtml5-bower

The old one seems not to be maintained. This one is. Pull requests welcome.

Upvotes: 0

schnawel007
schnawel007

Reputation: 4020

Thanks for the Tip of wysihtml5. I found a solution for Bootstrap 2 and wysihtml5: bootstrap-wysihtml5. I update it to Bootstrap 3: bootstrap3-wysihtml5.

Upvotes: 18

user520458
user520458

Reputation:

I'm using wysihtml5 in one of my Bootstrap 3 projects and is working fine; perhaps only tweaked a few icons to make it look nice.

Upvotes: 2

Related Questions