Compare commits

..

No commits in common. "47f3cbc26c67722a21d0bfe2335860a1cd19b9c5" and "1ec1bbbfed71cb6d6ef6331da89af398ef14c14e" have entirely different histories.

2 changed files with 1 additions and 11 deletions

3
.gitignore vendored
View File

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

View File

@ -2,12 +2,3 @@
mkdir -p tables/ mkdir -p tables/
./convert.py use-cases/* -nv -d 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