Remove unused code.

This commit is contained in:
Dillon Kearns 2020-05-04 20:46:14 -07:00
parent e03e4d254f
commit 2e8e9754d1
3 changed files with 1 additions and 8 deletions

View File

@ -39,8 +39,7 @@ function parseMarkdown(path, fileContents) {
return {
path,
metadata: JSON.stringify(data),
body: content,
extension: "md"
body: content
};
}

View File

@ -58,7 +58,5 @@ function parseMarkdown(path, fileContents) {
path,
metadata: JSON.stringify(data),
body: content,
// TODO fix this
extension: "md"
};
}

View File

@ -779,10 +779,6 @@ application config =
_ ->
case decodeValue |> Decode.decodeValue (Decode.field "contentJson" contentJsonDecoder) of
Ok contentJson ->
let
_ =
Debug.log "HotReloadComplete" ""
in
AppMsg (HotReloadComplete contentJson)
Err error ->