Compare commits

..

4 Commits

2 changed files with 11 additions and 1 deletions

3
.gitignore vendored
View File

@ -103,5 +103,6 @@ dist
# TernJS port file
.tern-port
# Generated tables for use-cases
# utils/table-generator generated files
utils/table-generator/tables/
utils/table-generator/tables.md

View File

@ -2,3 +2,12 @@
mkdir -p tables/
./convert.py use-cases/* -nv -d tables/
if [ -f tables.md ]; then
rm tables.md
fi
for i in tables/*; do
cat $i >> tables.md
echo "" >> tables.md
done