Skip to content

Commit

Permalink
Allow RFCs to carry media (e.g. images).
Browse files Browse the repository at this point in the history
  • Loading branch information
kennytm committed Nov 10, 2018
1 parent 93f1627 commit eae2eb1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion generate-book.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ fi

echo "[Introduction](introduction.md)\n" > src/SUMMARY.md

for f in $(ls text/* | sort)
for f in $(ls text/*.md | sort)
do
echo "- [$(basename $f ".md")]($(basename $f))" >> src/SUMMARY.md
cp $f src
Expand All @@ -17,3 +17,5 @@ done
cp README.md src/introduction.md

mdbook build

cp -r text/media book/
Empty file added text/media/.gitignore
Empty file.

0 comments on commit eae2eb1

Please sign in to comment.