|
|
@ -11,9 +11,9 @@ file_icml=$pagetitle".icml"
|
|
|
|
file_html=$pagetitle".html"
|
|
|
|
file_html=$pagetitle".html"
|
|
|
|
api_querypage="https://pzwiki.wdka.nl/mw-mediadesign/api.php?format=json&action=query&titles="$pagetitle"&prop=revisions&rvprop=content"
|
|
|
|
api_querypage="https://pzwiki.wdka.nl/mw-mediadesign/api.php?format=json&action=query&titles="$pagetitle"&prop=revisions&rvprop=content"
|
|
|
|
echo $api_querypage $file_wiki
|
|
|
|
echo $api_querypage $file_wiki
|
|
|
|
curl -s $api_querypage | jq '.query.pages[].revisions[]."*"' > $file_wiki
|
|
|
|
curl -s $api_querypage | jq '.query.pages[].revisions[]."*"' | xargs | sed 's/\[\[.*\]\]//g' > $file_wiki
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pandoc $file_wiki -f mediawiki -t html -o $file_html
|
|
|
|
echo `cat $file_wiki` | pandoc -f mediawiki -t html -o $file_html
|
|
|
|
pandoc $file_wiki -f mediawiki -t icml -s -o $file_icml
|
|
|
|
echo `cat $file_wiki` | pandoc -f mediawiki -t icml -s -o $file_icml
|
|
|
|
rm $file_wiki
|
|
|
|
# rm *.wiki
|