mirror of
https://github.com/YunoHost-Apps/dokuwiki_ynh.git
synced 2024-09-03 18:26:20 +02:00
11 lines
389 B
PHP
11 lines
389 B
PHP
<?php
|
|
/*
|
|
* Wrap plugin, configuration metadata
|
|
*
|
|
*/
|
|
|
|
$meta['noPrefix'] = array('string');
|
|
$meta['restrictedClasses'] = array('string');
|
|
$meta['restrictionType'] = array('multichoice','_choices' => array(0,1));
|
|
$meta['syntaxDiv'] = array('multichoice','_choices' => array('WRAP','block', 'div'));
|
|
$meta['syntaxSpan'] = array('multichoice','_choices' => array('wrap', 'inline', 'span'));
|