~jaro/balkon

ref: 2eb2cd0081f77470ddf664bb242c24f2173b8a1d balkon/lib/Data/Text/ParagraphLayout/ParagraphConstruction.hs -rw-r--r-- 552 bytes
2eb2cd00 β€” Jaro Bump version to 0.2.0.1. 1 year, 1 month ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
-- | Infix operators for construction of paragraphs with readable code.
--
-- Example construction:
-- @en = (,) SpanOptions { spanLanguage = "en" }@
-- @ja = (,) SpanOptions { spanLanguage = "ja" }@
-- @"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