Description Extraction

In addition to snippets/snippets-manipulation snippets manipulation that is applicable to any language, Znai can extract description of methods and convert parameters into snippets/api-parameters API Parameters :include-doxygen-doc-params: utils::nested::my_func { title: "My Params" } first_param int description of first param item a item b second_param bool description of second param Head over to CPP/description-extraction CPP Description Extraction to learn more

Auto Reference

Znai provides plugins to automatically create reference documentation for methods and classes. :include-doxygen-member: multi_println prints a value and a new line v1 const T1 & value to print v2 const T2 & value to print v1 const T1 & value to print v2 const T2 & value to print /** * prints a value and a new line * @param v1 value to print * @param v2 value to print * @tparam T1 type of the value one to print * @tparam T2 type of the value two to print */ template<typename T1, typename T2> void multi_println(const T1& v1, const T2& v2) { std::cout << v1 << ", " << v2 << "\n"; } Head over to CPP/auto-reference CPP Auto Reference to learn more