package octavius

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type token =
  1. | Param of string
  2. | AUTHOR
  3. | Version of string
  4. | See of OctTypes.see_ref
  5. | Since of string
  6. | Before of string
  7. | DEPRECATED
  8. | Raise of string
  9. | RETURN
  10. | INLINE
  11. | Custom of string
  12. | Canonical of string
  13. | BEGIN
  14. | END
  15. | Title of int * string option
  16. | Style of OctTypes.style_kind
  17. | LIST
  18. | ENUM
  19. | Item of bool
  20. | Ref of OctTypes.ref_kind * string
  21. | Special_Ref of OctTypes.special_ref_kind
  22. | Code of string
  23. | Pre_Code of string
  24. | Verb of string
  25. | Target of string option * string
  26. | HTML_Bold of string
  27. | HTML_END_BOLD
  28. | HTML_Center of string
  29. | HTML_END_CENTER
  30. | HTML_Left of string
  31. | HTML_END_LEFT
  32. | HTML_Right of string
  33. | HTML_END_RIGHT
  34. | HTML_Italic of string
  35. | HTML_END_ITALIC
  36. | HTML_Title of string * int
  37. | HTML_END_Title of int
  38. | HTML_List of string
  39. | HTML_END_LIST
  40. | HTML_Enum of string
  41. | HTML_END_ENUM
  42. | HTML_Item of string
  43. | HTML_END_ITEM
  44. | MINUS
  45. | PLUS
  46. | NEWLINE
  47. | EOF
  48. | BLANK
  49. | Char of string
val main : (Stdlib.Lexing.lexbuf -> token) -> Stdlib.Lexing.lexbuf -> OctTypes.t