mirror of
https://github.com/logos-storage/plonky2-verifier.git
synced 2026-01-02 13:53:07 +00:00
21 lines
254 B
Bash
Executable File
21 lines
254 B
Bash
Executable File
#!/bin/bash
|
|
|
|
OUTPUT="commentary.pdf"
|
|
|
|
MD_FILES="\
|
|
Overview.md\
|
|
Gates.md\
|
|
Selectors.md\
|
|
GateConstraints.md\
|
|
Wiring.md\
|
|
Poseidon.md\
|
|
FRI.md\
|
|
Challenges.md\
|
|
Protocol.md\
|
|
Lookups.md\
|
|
Recursion.md"
|
|
|
|
#echo ${MD_FILES}
|
|
|
|
pandoc -o $OUTPUT ${MD_FILES}
|