Add note about pandoc'ing to archive_crawler

This commit is contained in:
Rawiri Blundell 2023-04-16 20:12:12 +12:00
parent 91f259b2ba
commit 70c107ca1f

View File

@ -114,3 +114,8 @@ extract_markup() {
get_wayback_target "${REPLY}"
done < waybacktargets
)
# Convert from dokuwiki markup to github markdown
while read -r; do
pandoc --from dokuwiki --to gfm --toc --no-highlight "${REPLY}" > "${REPLY/.markup/}.md"
done < <(find . -name "*.markup")