{= include("docs.util"); internal.docs.tab = "FAQ"; start_docs_page("FAQ"); node group; node groups = "docs.faq.faq_toc"; node faq_entry; node faq_entries; string name; string label; string question; string anchor_id; string section_id; # count makes sure that anchor Id's are unique int count = 1; '
'; foreach group groups ( label = @group{"label"}; faq_entries = group{"items"}; # Menu items link to FAQ headers, this requires the name attribute '

' . label . '

'; foreach faq_entry faq_entries ( name = node_name(faq_entry); anchor_id = 'faq_' . count; section_id = 'faq_' . count . ':div'; question = @("docs.faq.db." . name . ".question"); '
'; '' . question . '\n'; '
'; expand($("docs.faq.db." . name . ".short_answer")); '
'; "For full details, see " . docs_faq_link(name) . "
\n"; '
'; '
'; count++; ); ); '
'; end_docs_page(); =}