diff options
author | Ben Sima <ben@bsima.me> | 2020-04-11 18:20:44 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-04-11 18:20:44 -0700 |
commit | f6723d817905d5e098b4f34010c4c0214f22e89d (patch) | |
tree | 16fc856acc1638f85a7f2ebdb89fc35cf99cb6ad /Run/Que/Website.hs | |
parent | 70b708399748246660e5c939acc04bf129a5c501 (diff) |
Fix bad reference
Diffstat (limited to 'Run/Que/Website.hs')
-rw-r--r-- | Run/Que/Website.hs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Run/Que/Website.hs b/Run/Que/Website.hs index 9d96628..7a551b8 100644 --- a/Run/Que/Website.hs +++ b/Run/Que/Website.hs @@ -45,7 +45,6 @@ main = do , style = src </> "style.css" , apidocs = src </> "apidocs.md" , tutorial = src </> "tutorial.md" - , fontLink = src </> "font.html" } getKey :: Namespace -> IO (Maybe Key) @@ -71,7 +70,6 @@ data Sources = Sources , style :: FilePath , tutorial :: FilePath , apidocs :: FilePath - , fontLink :: FilePath } type Namespace = Text @@ -98,8 +96,6 @@ run key ns Sources {..} = Async.runConcurrently actions >> return () <$> Process.readProcess "pandoc" [ "--include-in-header" - , fontLink - , "--include-in-header" , style , "-i" , md |