mirror of
https://github.com/e107inc/e107.git
synced 2025-06-01 16:37:48 +02:00
Some basic markdown support. Use bbcode [markdown][/markdown]
This commit is contained in:
parent
67f9c655a7
commit
0aa3fb4c10
40
e107_core/bbcodes/bb_markdown.php
Normal file
40
e107_core/bbcodes/bb_markdown.php
Normal file
@ -0,0 +1,40 @@
|
||||
<?php
|
||||
/**
|
||||
* Copyright (C) e107 Inc (e107.org), Licensed under GNU GPL (http://www.gnu.org/licenses/gpl.txt)
|
||||
*
|
||||
* DIV block bbcode
|
||||
*/
|
||||
|
||||
if (!defined('e107_INIT')) { exit; }
|
||||
|
||||
|
||||
class bb_markdown extends e_bb_base
|
||||
{
|
||||
/**
|
||||
* Called prior to save
|
||||
* Re-assemble the bbcode
|
||||
*/
|
||||
function toDB($code_text, $parm)
|
||||
{
|
||||
return '[markdown]'.$code_text.'[/markdown]';
|
||||
}
|
||||
|
||||
/**
|
||||
* Convert Markdown
|
||||
*/
|
||||
function toHTML($code_text, $parm)
|
||||
{
|
||||
require_once(e_HANDLER."markdown.php");
|
||||
return Markdown($code_text);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
?>
|
@ -44,7 +44,7 @@ class e_bbcode
|
||||
'b', 'justify', 'file', 'stream',
|
||||
'textarea', 'list', 'php', 'time',
|
||||
'spoiler', 'hide', 'youtube', 'sanitised',
|
||||
'p', 'h', 'nobr', 'block','table','tr','tbody','td'
|
||||
'p', 'h', 'nobr', 'block','table','tr','tbody','td','markdown'
|
||||
);
|
||||
|
||||
foreach($this->core_bb as $c)
|
||||
|
1743
e107_handlers/markdown.php
Normal file
1743
e107_handlers/markdown.php
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user