module Drasil.NBSections.Introduction (
introductionSection, purposeOfDoc) where
import Language.Drasil
import qualified Drasil.DocLang.Notebook as NB (intro, prpsOfDoc)
introductionSection :: [Contents] -> [Section] -> Section
introductionSection :: [Contents] -> [Section] -> Section
introductionSection = [Contents] -> [Section] -> Section
NB.intro
purposeOfDoc :: [Sentence] -> Section
purposeOfDoc :: [Sentence] -> Section
purposeOfDoc [purposeOfProgram :: Sentence
purposeOfProgram] = [Contents] -> [Section] -> Section
NB.prpsOfDoc [Sentence -> Contents
mkParagraph Sentence
purposeOfProgram] []
purposeOfDoc _ = [Contents] -> [Section] -> Section
NB.prpsOfDoc [] []