Browse Source

PHP already adds <code> for highlight_string()

pull/40/head
Michael Save 12 years ago
parent
commit
cf6bf2c7dc
  1. 2
      inc/config.php

2
inc/config.php

@ -346,7 +346,7 @@
// $config['markup'][] = Array(
// '/^&lt;code&gt;(.+)&lt;\/code&gt;/ms',
// function($matches) {
// return '<code>' . highlight_string(html_entity_decode($matches[1]), true) . '</code>';
// return highlight_string(html_entity_decode($matches[1]), true);
// }
// );

Loading…
Cancel
Save