diff options
-rw-r--r-- | provider/posts/thermoprint-1.md | 34 |
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 | ||
44 | Features I intend to implement include: | 44 | Features 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 | ||