markdown plugin by Carl-Christian Salvesen
enables you to write pages using the markdown syntax
Last updated on 2006-05-24. Provides Syntax.
No compatibility info given!
Until plugin is available again analog to textile2 one 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@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 : ?>