diff --git a/docs/src/commandline.rst b/docs/src/commandline.rst index 11cb67ed8..990d50403 100644 --- a/docs/src/commandline.rst +++ b/docs/src/commandline.rst @@ -30,3 +30,12 @@ Commands ----------- .. include:: ../commands.rst + + +Depreciated commands +------------------------ + +.. csv-table:: Depreciated commands + :file: ../depreciated.csv + :widths: 35, 35 + :header-rows: 1 diff --git a/docs/src/gendoc.cpp b/docs/src/gendoc.cpp index e4ee7d4f9..f0f38f867 100644 --- a/docs/src/gendoc.cpp +++ b/docs/src/gendoc.cpp @@ -52,7 +52,8 @@ int main() { fs << '\t' << cmd << usage << help << "\n"; } - std::ofstream fs2("depreciated.txt"); + std::ofstream fs2("depreciated.csv"); + fs2 << "Old, New\n"; auto cmds = proxy.GetDepreciatedCommands(); for (auto it : cmds){ fs2 << it.first << ", " << it.second << '\n';