constcmdExists=require('command-exists')constos=require('os')module.exports={key:'pandoc',title:'Pandoc',description:'Convert between markup formats. Required for converting from other formats such as MediaWiki, AsciiDoc, Textile and other wikis.',asyncisCompatible(){returnos.arch()==='x64'},isInstalled:false,asynccheck(){try{awaitcmdExists('pandoc')this.isInstalled=true}catch(err){this.isInstalled=false}returnthis.isInstalled}}