Skip to content

Instantly share code, notes, and snippets.

@un-def
Created July 4, 2020 20:05
Show Gist options
  • Save un-def/c3a4f72271e01d5303006ee0055c808f to your computer and use it in GitHub Desktop.
Save un-def/c3a4f72271e01d5303006ee0055c808f to your computer and use it in GitHub Desktop.
Render wikitext to HTML using Wikipedia API
#!/bin/sh
curl https://en.wikipedia.org/w/api.php -F format=json -F action=parse -F contentmodel=wikitext -F text='<-' 2> /dev/null | jq -r '.parse.text["*"]'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment