Compatible with DokuWiki
No compatibility info given!
The missing download url means that this extension cannot be installed via the Extension Manager. Please see Publishing a Plugin on dokuwiki.org. Recommended are public repository hosts like GitHub, GitLab or Bitbucket.
This extension has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues.
Similar to markdowku, markdownextra, rst
Website With Plugin Currently Down
Use one of the newer plugins markdownextra or markdowku instead.
If you want to use the old markdown, you can download PHP Markdown and use the following syntax.php:
<?php /** * markdown-Plugin: Parses markdown-blocks * * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) * @author Sebastian Siedentopf <openmail+sourcecode@siezi.com> */ // must be run within DokuWiki if(!defined('DOKU_INC')) die(); if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/'); require_once(DOKU_PLUGIN.'syntax.php'); require_once(DOKU_PLUGIN.'markdown/markdown.php'); /** * All DokuWiki plugins to extend the parser/rendering mechanism * need to inherit from this class */ class syntax_plugin_markdown extends DokuWiki_Syntax_Plugin { /** * return some info */ function getInfo(){ return array( 'author' => 'Sebastian Siedentopf', 'email' => 'openmail@siezi.com', 'date' => '2008-08-28', 'name' => 'Markdown Plugin', 'desc' => 'Parses Markdown Bocks', 'url' => 'http://www.dokuwiki.org/plugin:markdown', ); } /** * What kind of syntax are we? */ function getType(){ return 'protected'; } /** * Where to sort in? */ function getSort(){ return 69; } function getPType() { return 'block'; } /** * Connect pattern to lexer */ function connectTo($mode) { $this->Lexer->addEntryPattern('<markdown>(?=.*</markdown>)',$mode,'plugin_markdown'); } function postConnect() { $this->Lexer->addExitPattern('</markdown>','plugin_markdown'); } /** * Handle the match */ function handle($match, $state, $pos, &$handler){ return array($match); } /** * Create output */ function render($mode, &$renderer, $data) { if($mode == 'xhtml' && $data[0] != "<markdown>" && $data[0] != "</markdown>") { $renderer->doc .= Markdown($data[0]); return true; } return false; } } //Setup VIM: ex: et ts=4 enc=utf-8 : ?>