X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=blobdiff_plain;f=Rakka%2FWiki.hs;h=a519d34a227da9b8a40ec6db7b66108907185fc2;hb=8c0fd38bb52a7b7cc69431df81c7736ddbb0faa6;hp=0bf23987b5ffed8c5368fd13d85695183a3b89c8;hpb=f832f12703d807f5fc3350dc71d8624ffc5b97a5;p=Rakka.git diff --git a/Rakka/Wiki.hs b/Rakka/Wiki.hs index 0bf2398..a519d34 100644 --- a/Rakka/Wiki.hs +++ b/Rakka/Wiki.hs @@ -1,38 +1,54 @@ module Rakka.Wiki ( WikiPage + + , Element(..) + , Attribute + , BlockElement(..) , InlineElement(..) - , ListElement(..) + , Definition(..) + , ListType(..) , ListItem - , Definition(..) - , CommandType(..) - , Attribute , BlockCommand(..) , InlineCommand(..) ) where +import Network.URI import Rakka.Page type WikiPage = [BlockElement] +data Element + = Block !BlockElement + | Inline !InlineElement + deriving (Eq, Show) + + +type Attribute = (String, String) + + data BlockElement = Heading { headingLevel :: !Int , headingText :: !String } | HorizontalLine - | List !ListElement + | List { + listType :: !ListType + , listItems :: ![ListItem] + } | DefinitionList ![Definition] | Preformatted ![InlineElement] | Paragraph ![InlineElement] - | Div ![Attribute] ![BlockElement] + | Div ![Attribute] ![Element] + | EmptyBlock | BlockCmd !BlockCommand deriving (Eq, Show) @@ -41,22 +57,29 @@ data InlineElement = Text !String | Italic ![InlineElement] | Bold ![InlineElement] + | ObjectLink { + objLinkPage :: !PageName + , objLinkText :: !(Maybe String) + } | PageLink { linkPage :: !(Maybe PageName) , linkFragment :: !(Maybe String) , linkText :: !(Maybe String) } + | ExternalLink { + extLinkURI :: !URI + , extLinkText :: !(Maybe String) + } | LineBreak ![Attribute] | Span ![Attribute] ![InlineElement] - | InlineCmd !InlineCommand - deriving (Eq, Show) - - -data ListElement - = ListElement { - listType :: !ListType - , listItems :: ![ListItem] + | Image { + imgSource :: !(Either URI PageName) + , imgAlt :: !(Maybe String) } + | Anchor ![Attribute] ![InlineElement] + | Input ![Attribute] + | EmptyInline + | InlineCmd !InlineCommand deriving (Eq, Show) @@ -66,7 +89,7 @@ data ListType deriving (Eq, Show) -type ListItem = [Either ListElement InlineElement] +type ListItem = [Element] data Definition @@ -80,9 +103,7 @@ data Definition data CommandType = InlineCommandType | BlockCommandType - - -type Attribute = (String, String) + deriving (Eq, Show) data BlockCommand