I use Pandoc to convert from HTML and Markdown to org-mode. The conversion leaves lots of extraneous org-mode PROPERTIES drawers. How can I direct org-mode to delete all PROPERTIES drawers?
ADDITION: I'm using this shell script to run the conversion.
function pandoc2org () {
basename=${1%%.*} # remove old file extension
pandoc -s -S "$1" -o $basename.org # name file as oldfile.org
}