summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2016-01-11 18:03:20 +0100
committerGregor Kleen <gkleen@yggdrasil.li>2016-01-11 18:03:20 +0100
commitdfd40fb9d60f7531e8341dc6d927ec1dd5a85cff (patch)
treeadfa41932a89d01d2cc7761e2295736e8355a250
parentaa17e01a4ddf7883171b3c25184aebd293e4ef90 (diff)
downloaddirty-haskell.org-dfd40fb9d60f7531e8341dc6d927ec1dd5a85cff.tar
dirty-haskell.org-dfd40fb9d60f7531e8341dc6d927ec1dd5a85cff.tar.gz
dirty-haskell.org-dfd40fb9d60f7531e8341dc6d927ec1dd5a85cff.tar.bz2
dirty-haskell.org-dfd40fb9d60f7531e8341dc6d927ec1dd5a85cff.tar.xz
dirty-haskell.org-dfd40fb9d60f7531e8341dc6d927ec1dd5a85cff.zip
syntax
-rw-r--r--provider/posts/thermoprint-1.md34
1 files changed, 17 insertions, 17 deletions
diff --git a/provider/posts/thermoprint-1.md b/provider/posts/thermoprint-1.md
index 7788562..34fc754 100644
--- a/provider/posts/thermoprint-1.md
+++ b/provider/posts/thermoprint-1.md
@@ -43,24 +43,24 @@ the old one:
43 43
44Features I intend to implement include: 44Features I intend to implement include:
45 45
46 * A parser for a bbcode-dialect which should be used in both the cli tool and the 46 * A parser for a bbcode-dialect which should be used in both the cli tool and the
47 website (it will probably end up using 47 website (it will probably end up using
48 [attoparsec](https://hackage.haskell.org/package/attoparsec)) -- bbcode as 48 [attoparsec](https://hackage.haskell.org/package/attoparsec)) -- bbcode as
49 presented on [Wikipedia](https://en.wikipedia.org/wiki/BBCode) is a proper 49 presented on [Wikipedia](https://en.wikipedia.org/wiki/BBCode) is a proper
50 superset of the feature-set of my cheap Chinese printer. 50 superset of the feature-set of my cheap Chinese printer.
51 * Reasonable test coverage using 51 * Reasonable test coverage using
52 [QuickCheck](https://hackage.haskell.org/package/QuickCheck), 52 [QuickCheck](https://hackage.haskell.org/package/QuickCheck),
53 [HUnit](http://hackage.haskell.org/package/HUnit). 53 [HUnit](http://hackage.haskell.org/package/HUnit).
54 54
55 Automatic testing with [cabal](https://www.haskell.org/cabal/) facilitated by 55 Automatic testing with [cabal](https://www.haskell.org/cabal/) facilitated by
56 [hspec](https://hackage.haskell.org/package/hspec). 56 [hspec](https://hackage.haskell.org/package/hspec).
57 * Support and server-side storage for drafts. 57 * Support and server-side storage for drafts.
58 * The Website should provide some richer formats than bbcode which will 58 * The Website should provide some richer formats than bbcode which will
59 probably find inclusion in the payload datastructure such as lists, 59 probably find inclusion in the payload datastructure such as lists,
60 checklists, tables, etc. 60 checklists, tables, etc.
61 61
62 The cli-tool should be able to use these too (the input will probably end up 62 The cli-tool should be able to use these too (the input will probably end up
63 being json-formatted). 63 being json-formatted).
64 64
65## Work so far 65## Work so far
66 66