aboutsummaryrefslogtreecommitdiffstats
path: root/FMark
diff options
context:
space:
mode:
authorThunderMikey <mikecyj25@gmail.com>2018-03-23 11:50:53 +0000
committerThunderMikey <mikecyj25@gmail.com>2018-03-23 11:50:53 +0000
commit84e61c2dd04e12b6a016bcfb7f90e6411a5b3258 (patch)
tree0f74286bcac4f0480ecaba846c764e9d258d0ea0 /FMark
parent124ace81526662f313c3090c758b94caaf725294 (diff)
downloadFMark-84e61c2dd04e12b6a016bcfb7f90e6411a5b3258.tar.gz
FMark-84e61c2dd04e12b6a016bcfb7f90e6411a5b3258.zip
fix markdowngen issues
Diffstat (limited to 'FMark')
-rw-r--r--FMark/src/Common/MarkdownGen/MarkdownGen.fs2
1 files changed, 1 insertions, 1 deletions
diff --git a/FMark/src/Common/MarkdownGen/MarkdownGen.fs b/FMark/src/Common/MarkdownGen/MarkdownGen.fs
index 3594a48..079e40c 100644
--- a/FMark/src/Common/MarkdownGen/MarkdownGen.fs
+++ b/FMark/src/Common/MarkdownGen/MarkdownGen.fs
@@ -126,7 +126,7 @@ let mdBody pObjs =
| CodeBlock (c, l) -> surround "```" (mapLang l + "\n" + c + "\n")
| Table rows -> mdTable rows
| List l -> mdList l |> sprintf "%s\n"
- | Header (h,s) -> mdHeader h //#### DO SOMETHING WITH STRING HERE
+ | Header h -> mdHeader h //#### DO SOMETHING WITH STRING HERE
//| Footnote (fnId, _) -> mdInlineFootnote fnId
| _ -> sprintf "%A is not implemented" pObj
List.fold folder "" pObjs