Download the PHP package kartik-v/yii2-markdown without Composer
On this page you can find all versions of the php package kartik-v/yii2-markdown. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package yii2-markdown
yii2-markdown
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.
Markdown
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.
MarkdownEditor
This is an advanced markdown input widget with configurable options. It is styled using Bootstrap 3.0. Key features available with this widget are:
- Configurable toolbar and buttons for formatting content
- Live preview of Markdown formatted text as HTML
- Maximize editor for full screen editing
- Implements PHP Markdown Extra and PHP SmartyPantsTypographer functionality as provided by the Markdown.
- Uses Bootstrap 3.0 styling wherever possible
- Allows saving/exporting of the text-editor contents as Text or HTML
- Configurable header, footer, and input options.
- Supports localization and customization of messages and content.
View examples and details or view a complete demo.
Demo
You can see a demonstration here on usage of these functions with documentation and examples.
Installation
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
or add
to the section of your composer.json
file.
Usage
Setup Module
Add markdown
to your modules section of your Yii configuration file
You can setup additional configuration options for the markdown
module:
Markdown
MarkdownEditor
Smarty Templates
Smarty templates can be enabled globally by setting the module params
Then define smarty in the editor
Note that it may be unwise to enable Smarty templates globally. You can set the module property smarty to a callable function and provide RBAC features.
It may be a better option to leave smarty turned off in the config files and turn it on in the view with the widget settings.
Then create an action in your controller and implement RBAC there. That way Smarty templates is off by default and you can turn it on and control access to it in the Controller.
After saving the value to the database you can render it in your views with Markdown::convert(). For example if you save the Markdown field in the content column of the Post table you can use something like the following.
License
yii2-markdown is released under the BSD 3-Clause License. See the bundled LICENSE.md
for details.
All versions of yii2-markdown with dependencies
michelf/php-markdown Version ~1.8
michelf/php-smartypants Version ~1.8