mirror of
https://github.com/deepset-ai/haystack.git
synced 2025-12-30 00:30:09 +00:00
12 lines
279 B
Bash
Executable File
12 lines
279 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e # Fails on any error in the following loop
|
|
export PYTHONPATH=$PWD/docs/pydoc # Make the renderers available to pydoc
|
|
cd docs/pydoc
|
|
rm -rf temp && mkdir temp
|
|
cd temp
|
|
for file in ../config/* ; do
|
|
echo "Converting $file..."
|
|
pydoc-markdown "$file"
|
|
done
|