pandoc-placetable 0.4 → 0.4.1
raw patch · 4 files changed
+21/−5 lines, 4 files
Files
- README.md +7/−3
- pandoc-placetable.cabal +2/−1
- pandoc-placetable.hs +1/−1
- stack.yaml +11/−0
README.md view
@@ -57,15 +57,19 @@ ### Using stack - git clone git@github.com:mb21/pandoc-placetable.git- cd pandoc-placetable- stack install+ stack install pandoc-placetable +### The inlineMarkdown flag+ When compiled with the `inlineMarkdown` flag, the `inlinemarkdown=yes`option is available to have CSV and the caption be interpreted as markdown. Note that the flag causes Pandoc to be required as a dependency so it will take a while to build. cabal install -f inlineMarkdown pandoc-placetable++or:++ stack install --flag pandoc-placetable:inlineMarkdown pandoc-placetable ## Usage
pandoc-placetable.cabal view
@@ -1,5 +1,5 @@ Name: pandoc-placetable-Version: 0.4+Version: 0.4.1 Build-Type: Simple Synopsis: Pandoc filter to include CSV files Description: A Pandoc filter that replaces code blocks (that have the class `table`)@@ -15,6 +15,7 @@ Copyright: (c) 2015 Mauro Bieg Category: Text Data-Files: README.md+Extra-source-files: stack.yaml Cabal-Version: >=1.10 Source-repository head type: git
pandoc-placetable.hs view
@@ -139,7 +139,7 @@ else if null s then mempty- then str s+ else str s strToBlocks s = if inlinemd
+ stack.yaml view
@@ -0,0 +1,11 @@+resolver: lts-7.5++packages:+- '.'++extra-deps:+ - spreadsheet-0.1.3.4++flags: {}++extra-package-dbs: []