module Drasil.DocLang.Notebook where
import Language.Drasil
import qualified Data.Drasil.Concepts.Documentation as Doc (introduction, learnObj, caseProb,
prpsOfDoc, review, summary, example, appendix, reference)
intro, learnObj, review, caseProb, summary, appendix, reference, example :: [Contents] -> [Section] -> Section
intro :: [Contents] -> [Section] -> Section
intro [Contents]
cs [Section]
ss = Sentence -> [Contents] -> [Section] -> Reference -> Section
section (IdeaDict -> Sentence
forall n. NamedIdea n => n -> Sentence
titleize IdeaDict
Doc.introduction) [Contents]
cs [Section]
ss Reference
introLabel
learnObj :: [Contents] -> [Section] -> Section
learnObj [Contents]
cs [Section]
ss = Sentence -> [Contents] -> [Section] -> Reference -> Section
section (CI -> Sentence
forall n. NamedIdea n => n -> Sentence
titleize' CI
Doc.learnObj) [Contents]
cs [Section]
ss Reference
learnObjLabel
review :: [Contents] -> [Section] -> Section
review [Contents]
cs [Section]
ss = Sentence -> [Contents] -> [Section] -> Reference -> Section
section (IdeaDict -> Sentence
forall n. NamedIdea n => n -> Sentence
titleize IdeaDict
Doc.review) [Contents]
cs [Section]
ss Reference
reviewLabel
caseProb :: [Contents] -> [Section] -> Section
caseProb [Contents]
cs [Section]
ss = Sentence -> [Contents] -> [Section] -> Reference -> Section
section (IdeaDict -> Sentence
forall n. NamedIdea n => n -> Sentence
titleize IdeaDict
Doc.caseProb) [Contents]
cs [Section]
ss Reference
caseProbLabel
example :: [Contents] -> [Section] -> Section
example [Contents]
cs [Section]
ss = Sentence -> [Contents] -> [Section] -> Reference -> Section
section (IdeaDict -> Sentence
forall n. NamedIdea n => n -> Sentence
titleize IdeaDict
Doc.example) [Contents]
cs [Section]
ss Reference
exampleLabel
summary :: [Contents] -> [Section] -> Section
summary [Contents]
cs [Section]
ss = Sentence -> [Contents] -> [Section] -> Reference -> Section
section (IdeaDict -> Sentence
forall n. NamedIdea n => n -> Sentence
titleize IdeaDict
Doc.summary) [Contents]
cs [Section]
ss Reference
summaryLabel
appendix :: [Contents] -> [Section] -> Section
appendix [Contents]
cs [Section]
ss = Sentence -> [Contents] -> [Section] -> Reference -> Section
section (IdeaDict -> Sentence
forall n. NamedIdea n => n -> Sentence
titleize IdeaDict
Doc.appendix) [Contents]
cs [Section]
ss Reference
appendixLabel
reference :: [Contents] -> [Section] -> Section
reference [Contents]
cs [Section]
ss = Sentence -> [Contents] -> [Section] -> Reference -> Section
section (IdeaDict -> Sentence
forall n. NamedIdea n => n -> Sentence
titleize' IdeaDict
Doc.reference) [Contents]
cs [Section]
ss Reference
referenceLabel
sectionReferences :: [Reference]
sectionReferences :: [Reference]
sectionReferences = [Reference
introLabel, Reference
learnObjLabel, Reference
docPurposeLabel, Reference
referenceLabel,
Reference
reviewLabel, Reference
appendixLabel, Reference
summaryLabel, Reference
exampleLabel]
introLabel, learnObjLabel, docPurposeLabel, referenceLabel,
reviewLabel, caseProbLabel, appendixLabel, summaryLabel, exampleLabel :: Reference
introLabel :: Reference
introLabel = String -> Sentence -> Reference
makeSecRef String
"Intro" (Sentence -> Reference) -> Sentence -> Reference
forall a b. (a -> b) -> a -> b
$ IdeaDict -> Sentence
forall n. NamedIdea n => n -> Sentence
titleize IdeaDict
Doc.introduction
learnObjLabel :: Reference
learnObjLabel = String -> Sentence -> Reference
makeSecRef String
"LearnObj" (Sentence -> Reference) -> Sentence -> Reference
forall a b. (a -> b) -> a -> b
$ CI -> Sentence
forall n. NamedIdea n => n -> Sentence
titleize' CI
Doc.learnObj
docPurposeLabel :: Reference
docPurposeLabel = String -> Sentence -> Reference
makeSecRef String
"DocPurpose" (Sentence -> Reference) -> Sentence -> Reference
forall a b. (a -> b) -> a -> b
$ IdeaDict -> Sentence
forall n. NamedIdea n => n -> Sentence
titleize IdeaDict
Doc.prpsOfDoc
referenceLabel :: Reference
referenceLabel = String -> Sentence -> Reference
makeSecRef String
"References" (Sentence -> Reference) -> Sentence -> Reference
forall a b. (a -> b) -> a -> b
$ IdeaDict -> Sentence
forall n. NamedIdea n => n -> Sentence
titleize' IdeaDict
Doc.reference
reviewLabel :: Reference
reviewLabel = String -> Sentence -> Reference
makeSecRef String
"Review" (Sentence -> Reference) -> Sentence -> Reference
forall a b. (a -> b) -> a -> b
$ IdeaDict -> Sentence
forall n. NamedIdea n => n -> Sentence
titleize IdeaDict
Doc.review
caseProbLabel :: Reference
caseProbLabel = String -> Sentence -> Reference
makeSecRef String
"CaseProb" (Sentence -> Reference) -> Sentence -> Reference
forall a b. (a -> b) -> a -> b
$ IdeaDict -> Sentence
forall n. NamedIdea n => n -> Sentence
titleize IdeaDict
Doc.caseProb
appendixLabel :: Reference
appendixLabel = String -> Sentence -> Reference
makeSecRef String
"Appendix" (Sentence -> Reference) -> Sentence -> Reference
forall a b. (a -> b) -> a -> b
$ IdeaDict -> Sentence
forall n. NamedIdea n => n -> Sentence
titleize IdeaDict
Doc.appendix
summaryLabel :: Reference
summaryLabel = String -> Sentence -> Reference
makeSecRef String
"Summary" (Sentence -> Reference) -> Sentence -> Reference
forall a b. (a -> b) -> a -> b
$ IdeaDict -> Sentence
forall n. NamedIdea n => n -> Sentence
titleize IdeaDict
Doc.summary
exampleLabel :: Reference
exampleLabel = String -> Sentence -> Reference
makeSecRef String
"Example" (Sentence -> Reference) -> Sentence -> Reference
forall a b. (a -> b) -> a -> b
$ IdeaDict -> Sentence
forall n. NamedIdea n => n -> Sentence
titleize IdeaDict
Doc.example