Skip to content

Commit eae2eb1

Browse files
committed
Allow RFCs to carry media (e.g. images).
1 parent 93f1627 commit eae2eb1

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

generate-book.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ fi
88

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

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

1919
mdbook build
20+
21+
cp -r text/media book/

text/media/.gitignore

Whitespace-only changes.

0 commit comments

Comments
 (0)