~jaro/balkon

ref: 0c7129f8f8a5f337d97cd7ac62430cbd694ef9eb balkon/lib/Data/Text/ParagraphLayout/ParagraphConstruction.hs -rw-r--r-- 461 bytes
0c7129f8 β€” Jaro Fill changelong and prepare for v1.0 release. 1 year, 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
-- | Infix operators for construction of paragraphs with readable code.
--
-- Example construction:
-- @"ignored prefix" |\< en~"one two " \>|\< ja~"δΈ‰ε››" \>| "ignored suffix"@
--
-- Special syntax for paragraphs with no contents:
-- @"ignored prefix" |<>| "ignored suffix"@
module Data.Text.ParagraphLayout.ParagraphConstruction
    ((>|)
    ,(>|<)
    ,(|<)
    ,(|<>|)
    ,(~)
    )
where

import Data.Text.ParagraphLayout.Internal.ParagraphConstruction