module Drasil.NBSections.Body (
reviewSec, mainIdeaSec, mthdAndanls, exampleSec) where
import Language.Drasil
import qualified Drasil.DocLang.Notebook as NB (review, mainIdea, methAndAnls, example)
reviewSec :: [Contents] -> Section
reviewSec :: [Contents] -> Section
reviewSec cs :: [Contents]
cs = [Contents] -> [Section] -> Section
NB.review [Contents]
cs []
mainIdeaSec :: [Contents] -> [Section] -> Section
mainIdeaSec :: [Contents] -> [Section] -> Section
mainIdeaSec = [Contents] -> [Section] -> Section
NB.mainIdea
mthdAndanls :: [Contents] -> [Section] -> Section
mthdAndanls :: [Contents] -> [Section] -> Section
mthdAndanls = [Contents] -> [Section] -> Section
NB.methAndAnls
exampleSec :: [Contents] -> [Section] -> Section
exampleSec :: [Contents] -> [Section] -> Section
exampleSec = [Contents] -> [Section] -> Section
NB.example