diff --git a/README.md b/README.md index e6f9bbb..42aa5f2 100644 --- a/README.md +++ b/README.md @@ -10,12 +10,17 @@ ## Generating the Markdown/SVG files 1. Get the CA certificates of the CAs from their corresponding web sites -2. Run the generation script and filter through `pandoc` for better markdown layout -```shell -for dir in cacert certum dtrust globalsign letsencrypt sectigo -do - poetry run python3 analyze_certs.py $dir | \ - pandoc -f markdown -t gfm > $dir.md -done -``` + ```shell + poetry run python3 fetch_ca_certs.py + ``` + +3. Run the generation script and filter through `pandoc` for better markdown layout + + ```shell + for dir in cacert certum dtrust globalsign letsencrypt sectigo + do + poetry run python3 analyze_certs.py $dir | \ + pandoc -f markdown -t gfm > $dir.md + done + ```