aboutsummaryrefslogtreecommitdiffstats
path: root/FMark
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2018-03-23 03:06:35 +0000
committerYann Herklotz <ymherklotz@gmail.com>2018-03-23 03:06:35 +0000
commit566b92541201e685e02ba40dde225cf999578043 (patch)
tree1bec8687c12b9858083781b58aeff8af5539c785 /FMark
parent1579d9817c8fdfd5594ef231b66461dbaf05728e (diff)
downloadFMark-566b92541201e685e02ba40dde225cf999578043.tar.gz
FMark-566b92541201e685e02ba40dde225cf999578043.zip
[html] Adding html type
Diffstat (limited to 'FMark')
-rw-r--r--FMark/src/Common/Types.fs3
1 files changed, 2 insertions, 1 deletions
diff --git a/FMark/src/Common/Types.fs b/FMark/src/Common/Types.fs
index a87aa19..94f4027 100644
--- a/FMark/src/Common/Types.fs
+++ b/FMark/src/Common/Types.fs
@@ -10,6 +10,7 @@ type Language =
type Token =
| CODEBLOCK of string * Language
| LITERAL of string
+ | HTMLLIT of string
| WHITESPACE of size: int
| NUMBER of string
| HASH | PIPE | EQUAL | MINUS | PLUS | ASTERISK | DOT | COMMA
@@ -84,4 +85,4 @@ type Cell with
member c.GetParams = match c with
| Contents(toks,head,align) -> toks,head,align
-type OutFormat = HTML | Markdown \ No newline at end of file
+type OutFormat = HTML | Markdown