Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Synopsis
- type Breadcrumbs = [(Int, [Inline])]
- data Presentation = Presentation {
- pFilePath :: !FilePath
- pTitle :: ![Inline]
- pAuthor :: ![Inline]
- pSettings :: !PresentationSettings
- pSlides :: [Slide]
- pBreadcrumbs :: [Breadcrumbs]
- pActiveFragment :: !Index
- data PresentationSettings = PresentationSettings {
- psRows :: !(Maybe (FlexibleNum Int))
- psColumns :: !(Maybe (FlexibleNum Int))
- psMargins :: !(Maybe Margins)
- psWrap :: !(Maybe Bool)
- psTheme :: !(Maybe Theme)
- psIncrementalLists :: !(Maybe Bool)
- psAutoAdvanceDelay :: !(Maybe (FlexibleNum Int))
- psSlideLevel :: !(Maybe Int)
- psPandocExtensions :: !(Maybe ExtensionList)
- psImages :: !(Maybe ImageSettings)
- psBreadcrumbs :: !(Maybe Bool)
- psEval :: !(Maybe EvalSettingsMap)
- psSlideNumber :: !(Maybe Bool)
- defaultPresentationSettings :: PresentationSettings
- data Margins = Margins {}
- marginsOf :: PresentationSettings -> (Int, Int)
- newtype ExtensionList = ExtensionList {}
- defaultExtensionList :: ExtensionList
- data ImageSettings = ImageSettings {}
- type EvalSettingsMap = HashMap Text EvalSettings
- data EvalSettings = EvalSettings {
- evalCommand :: !Text
- evalReplace :: !Bool
- evalFragment :: !Bool
- data Slide
- = ContentSlide (Instructions Block)
- | TitleSlide Int [Inline]
- newtype Fragment = Fragment [Block]
- type Index = (Int, Int)
- getSlide :: Int -> Presentation -> Maybe Slide
- numFragments :: Slide -> Int
- data ActiveFragment
- getActiveFragment :: Presentation -> Maybe ActiveFragment
Documentation
type Breadcrumbs = [(Int, [Inline])] Source #
data Presentation Source #
Presentation | |
|
Instances
Show Presentation Source # | |
Defined in Patat.Presentation.Internal showsPrec :: Int -> Presentation -> ShowS # show :: Presentation -> String # showList :: [Presentation] -> ShowS # |
data PresentationSettings Source #
These are patat-specific settings. That is where they differ from more general metadata (author, title...)
PresentationSettings | |
|
Instances
FromJSON PresentationSettings Source # | |
Defined in Patat.Presentation.Internal parseJSON :: Value -> Parser PresentationSettings # parseJSONList :: Value -> Parser [PresentationSettings] # | |
Monoid PresentationSettings Source # | |
Semigroup PresentationSettings Source # | |
Defined in Patat.Presentation.Internal | |
Show PresentationSettings Source # | |
Defined in Patat.Presentation.Internal showsPrec :: Int -> PresentationSettings -> ShowS # show :: PresentationSettings -> String # showList :: [PresentationSettings] -> ShowS # |
newtype ExtensionList Source #
Instances
FromJSON ExtensionList Source # | |
Defined in Patat.Presentation.Internal parseJSON :: Value -> Parser ExtensionList # parseJSONList :: Value -> Parser [ExtensionList] # | |
Show ExtensionList Source # | |
Defined in Patat.Presentation.Internal showsPrec :: Int -> ExtensionList -> ShowS # show :: ExtensionList -> String # showList :: [ExtensionList] -> ShowS # |
data ImageSettings Source #
Instances
FromJSON ImageSettings Source # | |
Defined in Patat.Presentation.Internal parseJSON :: Value -> Parser ImageSettings # parseJSONList :: Value -> Parser [ImageSettings] # | |
Show ImageSettings Source # | |
Defined in Patat.Presentation.Internal showsPrec :: Int -> ImageSettings -> ShowS # show :: ImageSettings -> String # showList :: [ImageSettings] -> ShowS # |
type EvalSettingsMap = HashMap Text EvalSettings Source #
data EvalSettings Source #
EvalSettings | |
|
Instances
FromJSON EvalSettings Source # | |
Defined in Patat.Presentation.Internal parseJSON :: Value -> Parser EvalSettings # parseJSONList :: Value -> Parser [EvalSettings] # | |
Show EvalSettings Source # | |
Defined in Patat.Presentation.Internal showsPrec :: Int -> EvalSettings -> ShowS # show :: EvalSettings -> String # showList :: [EvalSettings] -> ShowS # |
numFragments :: Slide -> Int Source #
data ActiveFragment Source #
Instances
Show ActiveFragment Source # | |
Defined in Patat.Presentation.Internal showsPrec :: Int -> ActiveFragment -> ShowS # show :: ActiveFragment -> String # showList :: [ActiveFragment] -> ShowS # |