M CHANGELOG.md => CHANGELOG.md +2 -0
@@ 10,6 10,8 @@
* Moved existing plain text interface into `Data.Text.ParagraphLayout.Plain`
submodule and marked it as deprecated.
+* Marked `Data.Text.ParagraphLayout.ParagraphConstruction` as deprecated.
+
* Input text spans can now have arbitrary user data attached to them.
All related data types (`Paragraph`, `Span`, `Fragment`, `SpanLayout`,
`ParagraphLayout`) have been extended with a type variable.
M lib/Data/Text/ParagraphLayout/ParagraphConstruction.hs => lib/Data/Text/ParagraphLayout/ParagraphConstruction.hs +3 -1
@@ 1,4 1,5 @@
--- | Infix operators for construction of paragraphs with readable code.
+-- | Infix operators for construction of legacy plain text paragraphs
+-- with readable code.
--
-- Example construction:
--
@@ 10,6 11,7 @@
--
-- > "ignored prefix" |<>| "ignored suffix"
module Data.Text.ParagraphLayout.ParagraphConstruction
+{-# DEPRECATED "Use \"Data.Text.ParagraphLayout.Rich\" instead." #-}
( (>|)
, (>|<)
, (|<)