pandoc-2.8.1: Conversion between markup formats
CopyrightCopyright (C) 2017–2019 John MacFarlane
LicenseGNU GPL, version 2 or above
MaintainerJohn MacFarlane <jgm@berkeley.edu>
Stabilityalpha
Portabilityportable
Safe HaskellNone
LanguageHaskell2010

Text.Pandoc.BCP47

Description

Functions for parsing and rendering BCP47 language identifiers.

Synopsis

Documentation

getLang :: WriterOptions -> Meta -> Maybe Text Source #

Get the contents of the lang metadata field or variable.

parseBCP47 :: Text -> Either Text Lang Source #

Parse a BCP 47 string as a Lang. Currently we parse extensions and private-use fields as "variants," even though officially they aren't.

data Lang Source #

Represents BCP 47 language/country code.

Constructors

Lang 

Fields

Instances

Instances details
Eq Lang Source # 
Instance details

Defined in Text.Pandoc.BCP47

Methods

(==) :: Lang -> Lang -> Bool

(/=) :: Lang -> Lang -> Bool

Ord Lang Source # 
Instance details

Defined in Text.Pandoc.BCP47

Methods

compare :: Lang -> Lang -> Ordering #

(<) :: Lang -> Lang -> Bool

(<=) :: Lang -> Lang -> Bool

(>) :: Lang -> Lang -> Bool

(>=) :: Lang -> Lang -> Bool

max :: Lang -> Lang -> Lang

min :: Lang -> Lang -> Lang

Show Lang Source # 
Instance details

Defined in Text.Pandoc.BCP47

Methods

showsPrec :: Int -> Lang -> ShowS

show :: Lang -> String

showList :: [Lang] -> ShowS

renderLang :: Lang -> Text Source #

Render a Lang as BCP 47.