Extension { #name : #Pandoc } { #category : #'*MiniDocs' } Pandoc class >> convertString: aString from: inputFormat to: outputFormat [ OSSUnixSubprocess new shellCommand: 'echo "', aString , '" | pandoc -f ', inputFormat,' -t ', outputFormat; redirectStdout; runAndWaitOnExitDo: [ :command :outString | ^ outString ]. ]