module Drasil.Projectile.Figures (figLaunch) where import Language.Drasil import Language.Drasil.Chunk.Concept.NamedCombinators (the) import Data.Drasil.Concepts.Documentation (physicalSystem) resourcePath :: String resourcePath :: String resourcePath = "../../../../datafiles/projectile/" figLaunch :: LabelledContent figLaunch :: LabelledContent figLaunch = Reference -> RawContent -> LabelledContent llcc (String -> Reference makeFigRef "Launch") (RawContent -> LabelledContent) -> RawContent -> LabelledContent forall a b. (a -> b) -> a -> b $ Lbl -> String -> MaxWidthPercent -> RawContent figWithWidth (NP -> Lbl forall n. NounPhrase n => n -> Lbl atStartNP (NamedChunk -> NP forall t. NamedIdea t => t -> NP the NamedChunk physicalSystem)) (String resourcePath String -> String -> String forall a. [a] -> [a] -> [a] ++ "Launch.jpg") 70