mirror of
https://github.com/quickwit-oss/tantivy.git
synced 2026-01-06 01:02:55 +00:00
10 lines
193 B
Bash
Executable File
10 lines
193 B
Bash
Executable File
#!/bin/bash
|
|
DEST=target/doc/tantivy/docs/
|
|
mkdir -p $DEST
|
|
|
|
for f in $(ls docs/*.md)
|
|
do
|
|
rustdoc $f -o $DEST --markdown-css ../../rustdoc.css --markdown-css style.css
|
|
done
|
|
|
|
cp docs/*.css $DEST |