This module provides Markdown Editing and Conversion utilities for Yii Framework 2.0. It implements markdown conversion using PHP Markdown Extra and PHP Smarty Pants. In addition, you can customize the flavor of Markdown, by including additional custom conversion patterns. The module also includes an enhanced customized Markdown Editor Widget for markdown editing and preview at runtime. This widget is styled using Bootstrap 3.0. View a complete demo.
VIEW DEMO
This is a markdown converter class that uses PHP Markdown Extra and PHP SmartyPantsTypographer for processing Markdown conversion to HTML. It also supports configurable custom conversion processing of patterns for styling your own flavour of Markdown to some extent.
View examples and details or view a complete demo.
VIEW DEMO
This is an advanced markdown input widget with configurable options. It is styled using Bootstrap 3.0. Key features available with this widget are:
View examples and details or view a complete demo.
You can see a demonstration here on usage of these functions with documentation and examples.
The preferred way to install this extension is through composer.
Note: Check the composer.json for this extension's requirements and dependencies. Read this web tip /wiki on setting the
minimum-stability
settings for your application's composer.json.
Either run
$ php composer.phar require kartik-v/yii2-markdown "dev-master"
or add
"kartik-v/yii2-markdown": "dev-master"
to the require
section of your composer.json
file.
Add markdown
to your modules section of your Yii configuration file
'modules' = [
/* other modules */
'markdown' => [
'class' => 'kartik\markdown\Module',
]
];
You can setup additional configuration options for the markdown
module:
'modules' = [
'markdown' => [
// the module class
'class' => 'kartik\markdown\Module',
// the controller action route used for markdown editor preview
'previewAction' => '/markdown/parse/preview',
// the list of custom conversion patterns for post processing
'customConversion' => [
'<table>' => '<table class="table table-bordered table-striped">'
],
// whether to use PHP SmartyPantsTypographer to process Markdown output
'smartyPants' => true
]
/* other modules */
];
use kartik\markdown\Markdown;
// default call
echo Markdown::convert($content);
// with custom post processing
echo Markdown::convert($content, ['custom' => [
'<h1>' => '<h1 class="custom-h1>',
'<h2>' => '<h1 class="custom-h2>',
]]);
// add this in your view
use kartik\markdown\MarkdownEditor;
// usage with model
echo MarkdownEditor::widget([
'model' => $model,
'attribute' => 'markdown',
]);
// usage without model
echo MarkdownEditor::widget([
'name' => 'markdown',
'value' => $value,
]);
yii2-markdown is released under the BSD 3-Clause License. See the bundled LICENSE.md
for details.
Date: 13-Feb-2015
Date: 12-Jan-2015
kv
prefix.Date: 16-Dec-2014
Date: 09-Nov-2014
Date: 01-Dec-2013
Comments