]> gitweb @ CieloNegro.org - Rakka.git/blobdiff - Rakka/Wiki.hs
Implemented the outline command
[Rakka.git] / Rakka / Wiki.hs
index f8341ec8506d6069e4a152d4db50371b5bcaee1b..0fcf38a6bca33b31550bb2ddbc8d5d49f37a19e7 100644 (file)
@@ -35,6 +35,7 @@ data BlockElement
     | Preformatted ![InlineElement]
     | Paragraph ![InlineElement]
     | Div ![Attribute] ![BlockElement]
+    | EmptyBlock
     | BlockCmd !BlockCommand
     deriving (Eq, Show, Typeable, Data)
 
@@ -56,6 +57,7 @@ data InlineElement
     | Span ![Attribute] ![InlineElement]
     | Image ![Attribute]
     | Anchor ![Attribute] ![InlineElement]
+    | EmptyInline
     | InlineCmd !InlineCommand
     deriving (Eq, Show, Typeable, Data)