Advertisement
Guest User

Untitled

a guest
Jan 17th, 2017
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. {-
  2.  
  3. bold, italic, underline, strikethrough
  4.  
  5. heading, blockquotes, block code, inline code, horizontal rule, paragraph
  6.  
  7. image, video, link
  8.  
  9. ordered list, unordered list
  10.  
  11. -}
  12.  
  13. data TextStyle =
  14. None -- []
  15. | Bold -- [1]
  16. | Italic -- [2]
  17. | Underline -- [3]
  18. | Strikethrough -- [4]
  19. | BoldItalic -- [1,2]
  20. | BoldUnderline -- [1,3]
  21. | BoldStrikethrough -- [1,4]
  22. | ItalicUnderline -- [2,3]
  23. | ItalicStrikethrough -- [2,4]
  24. | UnderlineStrikethrough -- [3,4]
  25. | BoldItalicUnderline -- [1,2,3]
  26. | BoldItalicStrikethrough -- [1,2,4]
  27. | BoldUnderlineStrikethrough -- [1,3,4]
  28. | ItalicUnderlineStrikethrough -- [2,3,4]
  29. | BoldItalicUnderlineStrikethrough -- [1,2,3,4]
  30.  
  31. data HeadingType =
  32. HeadingType1
  33. | HeadingType2
  34. | HeadingType3
  35. | HeadingType4
  36. | HeadingType5
  37. | HeadingType6
  38.  
  39. data StyledText =
  40. StyledText TextStyle Text
  41.  
  42. data Block =
  43. Plain StyledText
  44. | Paragraph StyledText
  45. | Code StyledText
  46. | BlockQuote StyledText
  47. | Heading HeadingType StyledText
  48. | OrderedList [StyledText]
  49. | UnorderedList [StyledText]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement