Update document WIP.

This commit is contained in:
ArthurSonzogni
2020-05-25 01:34:13 +02:00
committed by Arthur Sonzogni
parent 177df31d41
commit 75c424cea9
55 changed files with 3244 additions and 152 deletions

View File

@@ -17,3 +17,11 @@ for file in $files
do
clang-format -i $file
done
exampleList="./doc/example_list.md"
echo "# Examples" > $exampleList
files=$(find ./examples/ -iname "*.cpp")
for f in $files
do
echo "@example $f" >> $exampleList
done