diff --git a/style.less b/style.less new file mode 100644 index 0000000..9ecc509 --- /dev/null +++ b/style.less @@ -0,0 +1,5 @@ +div.addnewpage { + select, input { + margin-right: 3px; + } +} diff --git a/syntax.php b/syntax.php index c4aa794..ada08da 100644 --- a/syntax.php +++ b/syntax.php @@ -126,17 +126,18 @@ public function render($mode, Doku_Renderer $renderer, $data) { $input = 'text'; if($this->options['autopage']) $input = 'hidden'; - $form = '
' . DOKU_LF - . DOKU_TAB . '
' . DOKU_LF - . DOKU_TAB . DOKU_TAB . $namespaceinput . DOKU_LF - . DOKU_TAB . DOKU_TAB . '' . DOKU_LF + $form = '

' + . '' + . $namespaceinput + . '' . $newpagetemplateinput - . DOKU_TAB . DOKU_TAB . '' . DOKU_LF - . DOKU_TAB . DOKU_TAB . '' . DOKU_LF - . DOKU_TAB . DOKU_TAB . '' . DOKU_LF - . DOKU_TAB . DOKU_TAB . '' . DOKU_LF - . DOKU_TAB . '

' . DOKU_LF - . '
'; + . '' + . '' + . '' + . '' + . '' + . '

'; + $renderer->doc .= $form; return true;