module Data.Text.ParagraphLayout.ParagraphData (czechHelloParagraph ,emptyParagraph ,emptySpanParagraph ,loremIpsumParagraph ,mixedLanguageLTRParagraph ,mixedScriptSerbianParagraph ,trivialParagraph ) where import Data.Text.ParagraphLayout.ParagraphConstruction import Data.Text.ParagraphLayout.Plain (Paragraph, ParagraphOptions) emptyParagraph :: ParagraphOptions -> Paragraph emptyParagraph = "" |<>| "" emptySpanParagraph :: ParagraphOptions -> Paragraph emptySpanParagraph = "" |< "en"~"" >| "" trivialParagraph :: ParagraphOptions -> Paragraph trivialParagraph = "" |< "en"~"a" >| "" loremIpsumParagraph :: ParagraphOptions -> Paragraph loremIpsumParagraph = "" |< "zxx"~"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." >| "" czechHelloParagraph :: ParagraphOptions -> Paragraph czechHelloParagraph = "" |< "cs"~"Ahoj, světe!" >| "" mixedScriptSerbianParagraph :: ParagraphOptions -> Paragraph mixedScriptSerbianParagraph = "" |< "sr"~"Vikipedija (Википедија)" >| "" mixedLanguageLTRParagraph :: ParagraphOptions -> Paragraph mixedLanguageLTRParagraph = "Tak " |< "cs"~"jsem tady, " >|< "ja"~"世界!" >| ""