lang/langfilter/langfilter.hs

124 lines
3.9 KiB
Haskell
Raw Normal View History

2020-08-18 12:33:25 -04:00
import Text.Pandoc.Definition
import Text.Pandoc.JSON
import Text.Pandoc.Builder
2020-11-04 13:04:55 -05:00
import Text.Pandoc.Walk
import Data.Char (isUpper, isDigit)
import Data.Maybe
import Data.Text (Text)
import qualified Data.Text as Text
2020-08-18 12:33:25 -04:00
main :: IO ()
2021-04-28 06:31:31 -04:00
main = toJSONFilter (filter :: Pandoc -> Pandoc) where
2020-11-04 13:04:55 -05:00
filter =
walk (concatMap makeFigures) .
2021-04-28 06:31:31 -04:00
walk spans .
2020-11-04 13:04:55 -05:00
walk (concatMap glosses)
spans :: Inline -> Inline
spans = \case
Code attrs txt
| Just ('\\', txt') <- Text.uncons txt -> Code attrs txt'
| Just _ <- enclosed '/' '/' txt -> ipaB txt
| Just _ <- enclosed '[' ']' txt -> ipaN txt
| Just txt' <- enclosed '{' '}' txt -> lang txt'
| Just txt' <- enclosed '!' '!' txt -> abbr txt'
2020-08-18 12:33:25 -04:00
i -> i
2020-11-04 13:04:55 -05:00
ipaB, ipaN, lang, abbr :: Text -> Inline
ipaB = Span (cls ["ipa", "ipa-broad"]) . text'
ipaN = Span (cls ["ipa", "ipa-narrow"]) . text'
2021-04-28 06:31:31 -04:00
lang = Span (cls ["lang"]) . lang'
2020-11-04 13:04:55 -05:00
abbr = Span (cls ["abbr"]) . text' . endash
2020-08-18 12:33:25 -04:00
2020-11-04 13:04:55 -05:00
text' :: Text -> [Inline]
2020-08-18 12:33:25 -04:00
text' = toList . text
2021-04-28 06:31:31 -04:00
lang' :: Text -> [Inline]
lang' txt = case Text.uncons txt of
Nothing -> []
Just ('{', txt') -> RawInline "html" "<u>" : lang' txt'
Just ('}', txt') -> RawInline "html" "</u>" : lang' txt'
_ -> Str a : lang' b
where (a, b) = Text.span (\c -> c /= '{' && c /= '}') txt
2020-11-04 13:04:55 -05:00
cls :: [Text] -> Attr
cls cs = ("", cs, [])
glosses :: Block -> [Block]
glosses = \case
Div (_, cs, _) blocks | "glosses" `elem` cs ->
[RawBlock (Format "html") "<figure class=glosses>"] ++
mapMaybe glossTable blocks ++
[RawBlock (Format "html") "</figure>"]
b -> [b]
2021-04-28 06:34:32 -04:00
pattern Gloss l g w t = BulletList [[Plain l], [Plain g], [Plain w], [Plain t]]
pattern PGloss l p g w t =
BulletList [[Plain l], [Plain p], [Plain g], [Plain w], [Plain t]]
2020-11-04 13:04:55 -05:00
glossTable :: Block -> Maybe Block
glossTable = \case
Gloss l s g t -> Just $ make l Nothing s g t
PGloss l p s g t -> Just $ make l (Just p) s g t
HorizontalRule -> Nothing
b -> error $ "found " ++ show b ++ " in gloss section"
where
make l p s g t =
let n = length $ splitInlines s
colspecs = replicate n (AlignDefault, ColWidthDefault)
l' = cell1 n l; p' = cell1 n <$> p
ss = cells s; gs = cells g; t' = cell1 n t
in
Table ("", ["gloss"], []) (Caption Nothing []) colspecs
(TableHead mempty [])
[TableBody mempty (RowHeadColumns 0) [] $ concat
2021-04-28 06:34:32 -04:00
[[row ["gloss-lang", "lang"] [l']],
maybe [] (pure . row ["gloss-pron", "ipa"] . pure) p',
[row ["gloss-split", "lang"] ss],
[row ["gloss-gloss"] gs],
[row ["gloss-trans"] [t']]]]
2020-11-04 13:04:55 -05:00
(TableFoot mempty [])
cell is = Cell mempty AlignDefault (RowSpan 1) (ColSpan 1) [Plain is]
cell1 n is = Cell mempty AlignDefault (RowSpan 1) (ColSpan n) [Plain is]
cells = map (cell . concatMap abbrs) . splitInlines
2021-04-28 06:34:32 -04:00
row c = Row ("", c, [])
2020-11-04 13:04:55 -05:00
endash :: Text -> Text
endash = Text.map \case '-' -> ''; '_' -> ' '; c -> c
abbrs :: Inline -> [Inline]
abbrs (Str txt) = go $ endash txt where
go "" = []
go txt
| (l, r) <- Text.span isAbbr txt,
not $ Text.null l
= abbr' l : go r
| (l, r) <- Text.break isAbbr txt
= Str l : go r
abbr' txt = if Text.length txt == 1 then Str txt else abbr txt
isAbbr c = isUpper c || isDigit c || c `elem` (",.;\\[]" :: String)
abbrs i = [i]
splitInlines :: [Inline] -> [Inlines]
splitInlines is = filter (not . null) $ go is where
go [] = []
go is =
let (is1, is') = break (== Space) is in
fromList is1 : splitInlines (dropWhile (== Space) is')
makeFigures :: Block -> [Block]
makeFigures (Div ("", ["figure"], []) blks) =
[html "<figure>"] ++ blks ++ [html "</figure>"]
where html = RawBlock (Format "html")
makeFigures b = [b]
2020-08-18 12:33:25 -04:00
2020-11-04 13:04:55 -05:00
enclosed :: Char -> Char -> Text -> Maybe Text
2020-08-18 12:33:25 -04:00
enclosed o c txt
2020-11-04 13:04:55 -05:00
| Text.length txt >= 2,
Text.head txt == o,
Text.last txt == c
= Just $ Text.init $ Text.tail txt
2020-08-18 12:33:25 -04:00
enclosed _ _ _ = Nothing