<?php

define('SYNTAX_PLUGIN_SVG_PLUGINDIR',DOKU_PLUGIN.'svg/');
define('SYNTAX_PLUGIN_SVG_MEDIADIR',DOKU_INC.'data/svg/');

// attempt to include the install page
@include_once( SYNTAX_PLUGIN_SVG_MEDIADIR . '.install.php' );

// this would be defined on the install page
if( !defined( 'SYNTAX_PLUGIN_SVG_INSTALLED' ) )
{
	require_once( SYNTAX_PLUGIN_SVG_PLUGINDIR . 'install.php' );
	
	syntax_plugin_svg_install();
}

require_once( SYNTAX_PLUGIN_SVG_PLUGINDIR . 'svgparser.php' );

global $syntax_plugin_svg_pcount;
$syntax_plugin_svg_pcount = 0;

?>
