You are here

public property Markdown::$enhanced_ordered_list in Express 8

* Class attribute to toggle "enhanced ordered list" behaviour * setting this to true will allow ordered lists to start from the index * number that is defined first. * * For example: * 2. List item two * 3. List item three * * Becomes: * <ol start="2"> * <li>List item two</li> * <li>List item three</li> * </ol> * *

Type: bool

File

vendor/michelf/php-markdown/Michelf/Markdown.php, line 127

Class

Markdown
Markdown Parser Class

Namespace

Michelf

Code

public $enhanced_ordered_list = false;