In your theme, override the a_list_items function to get the array index from each item. Something like this:
public function a_list_items($a_items) { foreach ($a_items as $num => $a_item) { $this->output('<p>' . $num + 1 . '</p>'); $this->a_list_item($a_item); } }
Welcome to the Q&A site for Question2Answer.
If you have a question about Q2A, please ask here, in English.
To report a bug, please create a new issue on Github or ask a question here with the bug tag.
If you just want to try Q2A, please use the demo site.