public property Markdown::$enhanced_ordered_list in Markdown 7
* 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
- includes/
Markdown.php, line 127
Class
- Markdown
- Markdown Parser Class
Namespace
MichelfCode
public $enhanced_ordered_list = false;