X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=blobdiff_plain;f=Rakka%2FWiki.hs;h=a519d34a227da9b8a40ec6db7b66108907185fc2;hb=743f4a87fd557832ce67d6eb51749582820577c4;hp=b8be3a3fabf8bc5d3a56ef77cdd9207da6c81baf;hpb=c2cc1241c50c8ff3843002526011574e77f669aa;p=Rakka.git diff --git a/Rakka/Wiki.hs b/Rakka/Wiki.hs index b8be3a3..a519d34 100644 --- a/Rakka/Wiki.hs +++ b/Rakka/Wiki.hs @@ -1,32 +1,55 @@ module Rakka.Wiki ( WikiPage + + , Element(..) + , Attribute + , BlockElement(..) , InlineElement(..) - , ListElement(..) + , Definition(..) + , ListType(..) , ListItem - , Definition(..) + , CommandType(..) + , 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] ![Element] + | EmptyBlock + | BlockCmd !BlockCommand deriving (Eq, Show) @@ -34,19 +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) } - deriving (Eq, Show) - - -data ListElement - = ListElement { - listType :: !ListType - , listItems :: ![ListItem] + | ExternalLink { + extLinkURI :: !URI + , extLinkText :: !(Maybe String) + } + | LineBreak ![Attribute] + | Span ![Attribute] ![InlineElement] + | Image { + imgSource :: !(Either URI PageName) + , imgAlt :: !(Maybe String) } + | Anchor ![Attribute] ![InlineElement] + | Input ![Attribute] + | EmptyInline + | InlineCmd !InlineCommand deriving (Eq, Show) @@ -56,7 +89,7 @@ data ListType deriving (Eq, Show) -type ListItem = [Either ListElement InlineElement] +type ListItem = [Element] data Definition @@ -64,4 +97,28 @@ data Definition defTerm :: ![InlineElement] , defDesc :: ![InlineElement] } - deriving (Eq, Show) \ No newline at end of file + deriving (Eq, Show) + + +data CommandType + = InlineCommandType + | BlockCommandType + deriving (Eq, Show) + + +data BlockCommand + = BlockCommand { + bCmdName :: !String + , bCmdAttributes :: ![Attribute] + , bCmdContents :: ![BlockElement] + } + deriving (Eq, Show) + + +data InlineCommand + = InlineCommand { + iCmdName :: !String + , iCmdAttributes :: ![Attribute] + , iCmdContents :: ![InlineElement] + } + deriving (Eq, Show)