From 5bf04870236ae66f8a5dc8a2ce54e48417a78450 Mon Sep 17 00:00:00 2001 From: Pagwin Date: Wed, 5 Feb 2025 11:21:57 -0500 Subject: [PATCH] scaffolding for yeeting pandoc --- app/IR.hs | 4 ++++ app/Markdown.hs | 4 ++++ app/Restruct.hs | 4 ++++ psb.cabal | 2 +- 4 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 app/IR.hs create mode 100644 app/Markdown.hs create mode 100644 app/Restruct.hs diff --git a/app/IR.hs b/app/IR.hs new file mode 100644 index 0000000..a46bd3a --- /dev/null +++ b/app/IR.hs @@ -0,0 +1,4 @@ +module IR ( +) where + + diff --git a/app/Markdown.hs b/app/Markdown.hs new file mode 100644 index 0000000..568c185 --- /dev/null +++ b/app/Markdown.hs @@ -0,0 +1,4 @@ +module Markdown ( +) where + + diff --git a/app/Restruct.hs b/app/Restruct.hs new file mode 100644 index 0000000..2839524 --- /dev/null +++ b/app/Restruct.hs @@ -0,0 +1,4 @@ +module Restruct ( +) where + + diff --git a/psb.cabal b/psb.cabal index ab0fe00..3e20f64 100644 --- a/psb.cabal +++ b/psb.cabal @@ -29,7 +29,7 @@ executable psb -- .hs or .lhs file containing the Main module. main-is: Main.hs - other-modules: Config Utilities Templates Types + other-modules: Config Utilities Templates Types IR Markdown Restruct default-extensions: ApplicativeDo DataKinds NamedFieldPuns DerivingVia LambdaCase TypeApplications DeriveGeneric