mirror of
https://github.com/qdrant/qdrant.git
synced 2026-07-23 11:11:00 -05:00
* extend comments for strorage crate * update comments and readme for collection crate * apply cargo fmt * fix tests * apply fmt
12 lines
365 B
Bash
12 lines
365 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Finds all diagrams in documentation and updates renders
|
|
# Use this script if you updated one of the *.mmd files.
|
|
|
|
# Ensure current path is project root
|
|
cd "$(dirname "$0")/../" || exit
|
|
|
|
find . -name '*.mmd' \
|
|
| xargs -I {} docker run --rm -v $PWD:/data -u $UID ghcr.io/mermaid-js/mermaid-cli/mermaid-cli:latest -i /data/{} -o /data/{}.png
|
|
|