EpicEditor - Yii2 widget > stdout.in Ievgen Kuzminov IT blog

EpicEditor - Yii2 widget

Mar 10, 2014, 6:51:40 PM

epic editor

EpicEditor is an embeddable JavaScript Markdown editor

Frankly, I was using EpicEditor for the last 4 months in my blog, but now I will switch to http://lab.lepture.com/editor/ as I find it more handy. And publish EpicEditor extension just not to loose it at all. Feel free to enhance and fork it!

Demo

you can see on http://epiceditor.com

Installation via Composer

add to require section of your composer.json
"ijackua/yii2-epiceditor-widget": "dev-master" and run composer update

Usage example with Yii2

Active widget

use ijackua\epiceditor\Epiceditor;

Epiceditor::widget([
  'model' => $model,
  'attribute' => 'text',
  'options' => ['focusOnLoad' => true],
  'divHtmlOptions' => ['class' => 'epiceditordiv']
 ])

Simple widget

use ijackua\epiceditor\Epiceditor;

Epiceditor::widget([
  'name' => 'epiceditor',
  'value' => '# Hello world',
  'options' => ['focusOnLoad' => true],
  'divHtmlOptions' => ['class' => 'epiceditordiv']
 ])

Links

comments powered by Disqus
Ievgen
Kuzminov "iJackUA"
Web Team Lead
at MobiDev (Kharkiv, Ukraine)
Code in Ruby and Elixir, but still love PHP. Explore ES6 and Vue.js. Explore databases, use Ubuntu and MacOS, think about IT people and management

Notes


Skaffold tool that facilitates continuous development for Kubernetes-native applications. Continuously deploys to your local or remote Kubernetes cluster.



DoItLive is a tool for live presentations in the terminal. It reads a file of shell commands and replays the commands in a fake terminal session as you type random characters.