====== H-Tag Plugin ======
---- plugin ----
description: An alternative heading syntax
author : Adam B. Ross
email : abr.programmer@gmail.com
type : syntax
lastupdate : 2007-07-23
compatible : 2007-06-26
depends :
conflicts : numberedheadings
similar :
tags : editing, headings
----
^ Author | [[abr.programmer@gmail.com|Adam B. Ross]] |
^ Version | 0.95 (2007-07-23) |
^ DokuWiki version | Tested on v.2007-06-26|
===== Description =====
This is similar to Tony Pujal's @h# hack found in the discussion of the [[tips:reverseheadertags|inverse headings hack]]. It adds an easy-to-read syntax for headings in addition to the wiki's, and as a plugin. This is my first effort at playing with DokuWiki code, so please point out any mistakes.
===== Usage =====
h1. A Heading to Rule Them All!
This plugin will convert ''h1.'' through ''h6.'' to the equivalent headings. It is not case sensitive, but does need to be marked at the start of the line.
This syntax breaks compatibility with any code or plugins that manipulate the use of ''='''s to mark headings, such as [[plugin:numberedheadings]].
A demo and plugin download will be made available once I finish deploying my wiki ;P FIXME (URL to author's wiki ?)
===== Installation =====
- Create the directory ''dokuwiki/lib/plugins/htag''.
- Copy the code below to ''syntax.php''.
==== Source Code ====
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
* @version htag syntax plugin, v0.9
* @since 23-Jul-2007
**/
if(!defined('DOKU_INC')) define('DOKU_INC',realpath(dirname(__FILE__).'/../../').'/');
if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/');
require_once(DOKU_PLUGIN.'syntax.php');
class syntax_plugin_htag extends DokuWiki_Syntax_Plugin {
function getInfo() {
return array (
'author' => 'Adam B. Ross',
'email' => 'grayside@gmail.com',
'date' => '2007-07-23',
'name' => 'Heading Level Tag',
'desc' => 'Adds outline-style markup (h1.~) syntax for headings.',
'url' => 'http://www.dokuwiki.org/plugin:htag'
);
}
// header specific
function getType() { return 'baseonly'; }
// headings shouldn't be parsed..
function accepts($mode) { return false; }
function connectTo( $mode ) {
$this->Lexer->addSpecialPattern( '^[hH][1-6]\.[ \t]*[^\n]+(?=\n)', $mode, 'plugin_htag' );
}
// Doku_Parser_Mode 60
// header (numbered headers) 45
function getSort() { return 44; }
function handle( $match, $state, $pos, &$handler )
{
global $conf;
preg_match( '/^h\d/i', $match, $htag );
$title = substr( $match, 3 );
$title = trim($title);
$level = substr( $htag[0], 1, 1 );
if( $handler->status['section'] ) $handler->_addCall('section_close',array(), $pos);
if( $level <= $conf['maxseclevel'] ) {
$handler->_addCall('section_edit',array($handler->status['section_edit_start'], $pos-1,
$handler->status['section_edit_level'], $handler->status['section_edit_title']), $pos);
$handler->status['section_edit_start'] = $pos;
$handler->status['section_edit_level'] = $level;
$handler->status['section_edit_title'] = $title;
}
$handler->_addCall('header',array($title,$level,$pos), $pos);
$handler->_addCall('section_open',array($level),$pos);
$handler->status['section'] = true;
return true;
}
function render( $format, &$renderer, $data )
{
return true;
}
}
===== Changelog =====
* **Version 0.95 (2007-07-23)**: Fixed no-sections bug.
* **Version 0.9 (2007-07-17)**: First published version.
===== Discussion =====
==== Spurious blank lines ====
If I create a pair of headers:
h1. Heading 1
h2. Heading 2
and then export the page using the odt plugin, then I get spurious blank lines between the headings.
Looking at the content.xml file I can see that these are due to %%%% tags.
However, odt exports ok if the regular heading formats are used.
Anyone got any ideas what's causing this?
==== Error - 10 Feb 2011 ====
Causes the error : "Warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, 'Doku_Renderer_metadata::section_edit' was given in /var/www/redmine-wiki/inc/parserutils.php on line 419"
on the first load for each page. Refreshing the page will have it come up clean. Clearing the cache makes no difference.
----
**11 Dec 2011** (kaj.wiik ə iki.fi)
Edit the following lines out (section edit is done now elsewhere):
if( $level <= $conf['maxseclevel'] ) {
$handler->_addCall('section_edit',array($handler->status['section_edit_start'], $pos-1,
$handler->status['section_edit_level'], $handler->status['section_edit_title']), $pos);
$handler->status['section_edit_start'] = $pos;
$handler->status['section_edit_level'] = $level;
$handler->status['section_edit_title'] = $title;
}