Ich habe mein Formular, aber jedes untergeordnete Element des Elements "#markup" wird beim Rendern des Formulars nicht angezeigt.
$form['html'] = array(
'#type' => 'markup',
'#markup' => '<h2>My Heading</h2>',
'#tree' => true,
);
$form['html']['element'] = array(
'#type' => 'textfield',
'#title' => 'Foo',
);
In diesem Beispiel wird das Formularfeld "Element" nicht gerendert.
Ist das ein Drupal-Fehler oder muss ich etwas Bestimmtes tun?