15 lines
282 B
Haskell
15 lines
282 B
Haskell
|
module Parsing.BodyParser
|
||
|
( PostPart (..)
|
||
|
, parsePostBody
|
||
|
, collectBacklinks
|
||
|
, Backlinks
|
||
|
) where
|
||
|
|
||
|
import Data.Text (Text)
|
||
|
|
||
|
import Common.Parsing.PostPartType
|
||
|
import Common.Parsing.PostBodyUtils
|
||
|
|
||
|
parsePostBody :: Text -> IO [ PostPart ]
|
||
|
parsePostBody = undefined
|