├── .gitignore ├── .travis.yml ├── ChangeLog.md ├── LICENSE ├── README-pre-process.md ├── README.md ├── Setup.hs ├── app └── Main.hs ├── package.yaml ├── src └── CodeBlockExecutor.hs ├── stack.yaml ├── test.md └── test └── Spec.hs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdevanla/pandoc-markdown-ghci-filter/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdevanla/pandoc-markdown-ghci-filter/HEAD/.travis.yml -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdevanla/pandoc-markdown-ghci-filter/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdevanla/pandoc-markdown-ghci-filter/HEAD/LICENSE -------------------------------------------------------------------------------- /README-pre-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdevanla/pandoc-markdown-ghci-filter/HEAD/README-pre-process.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdevanla/pandoc-markdown-ghci-filter/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /app/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdevanla/pandoc-markdown-ghci-filter/HEAD/app/Main.hs -------------------------------------------------------------------------------- /package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdevanla/pandoc-markdown-ghci-filter/HEAD/package.yaml -------------------------------------------------------------------------------- /src/CodeBlockExecutor.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdevanla/pandoc-markdown-ghci-filter/HEAD/src/CodeBlockExecutor.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdevanla/pandoc-markdown-ghci-filter/HEAD/stack.yaml -------------------------------------------------------------------------------- /test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdevanla/pandoc-markdown-ghci-filter/HEAD/test.md -------------------------------------------------------------------------------- /test/Spec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdevanla/pandoc-markdown-ghci-filter/HEAD/test/Spec.hs --------------------------------------------------------------------------------