This repository has been archived on 2020-05-04. You can view files and clone it, but cannot push or open issues or pull requests.
phunk/application/config/markdown.php

13 lines
249 B
PHP

<?php defined('SYSPATH') or die('No direct script access.');
return array
(
'default' => array
(
'type' => 'html', // html or xhtml
'tab_width' => 2, // Tab width for output
'no_entities' => FALSE,
'no_markup' => FALSE
)
);
?>