Skip to content

Instantly share code, notes, and snippets.

View Lanhild's full-sized avatar
🌏
Working...

Loan J. Lanhild

🌏
Working...
View GitHub Profile
@Lanhild
Lanhild / rst_to_md.sh
Created August 10, 2023 16:24 — forked from zaiste/rst_to_md.sh
Convert RST to Markdown using Pandoc
FILES=*.rst
for f in $FILES
do
filename="${f%.*}"
echo "Converting $f to $filename.md"
`pandoc $f -f rst -t markdown -o $filename.md`
done