mirror of
https://github.com/Infinidat/infi.clickhouse_orm.git
synced 2024-11-14 21:26:34 +03:00
8 lines
210 B
Bash
Executable File
8 lines
210 B
Bash
Executable File
|
|
mkdir -p ../htmldocs
|
|
|
|
find ./ -iname "*.md" -type f -exec sh -c 'echo "Converting ${0}"; pandoc "${0}" -s -o "../htmldocs/${0%.md}.html"' {} \;
|
|
|
|
echo "Fixing links"
|
|
sed -i 's/\.md/\.html/g' ../htmldocs/*.html
|