package odoc
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
OCaml documentation generator
Install
dune-project
Dependency
Authors
Maintainers
Sources
odoc-2.1.1.tbz
sha256=f574dbd28cd0fc3a2b95525c4bb95ddf6d1f6408bb4fe12157fa537884f987fd
sha512=1c545c281a7022a167f028fff8cec6fb3f2f82da0881431be74e7a4281c5353ed83bfbdb4d9d9e08af6755dbe3505c052c5e5b58cdeb08c57aed5e89c0f15e91
doc/src/odoc.model/comment.ml.html
Source file comment.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93module Path = Paths.Path module Reference = Paths.Reference module Identifier = Paths.Identifier type 'a with_location = 'a Location_.with_location type style = [ `Bold | `Italic | `Emphasis | `Superscript | `Subscript ] type raw_markup_target = string type leaf_inline_element = [ `Space | `Word of string | `Code_span of string | `Raw_markup of raw_markup_target * string ] type non_link_inline_element = [ leaf_inline_element | `Styled of style * non_link_inline_element with_location list ] (* The cross-referencer stores section heading text, and sometimes pastes it into link contents. This type alias is provided for use by the cross-referencer. *) type link_content = non_link_inline_element with_location list type inline_element = [ leaf_inline_element | `Styled of style * inline_element with_location list | `Reference of Reference.t * link_content | `Link of string * link_content ] type paragraph = inline_element with_location list type module_reference = { module_reference : Reference.Module.t; module_synopsis : paragraph option; } (** The [{!modules: ...}] markup. [module_synopsis] is initially [None], it is resolved during linking. *) type nestable_block_element = [ `Paragraph of paragraph | `Code_block of string with_location | `Verbatim of string | `Modules of module_reference list | `List of [ `Unordered | `Ordered ] * nestable_block_element with_location list list ] type tag = [ `Author of string | `Deprecated of nestable_block_element with_location list | `Param of string * nestable_block_element with_location list | `Raise of string * nestable_block_element with_location list | `Return of nestable_block_element with_location list | `See of [ `Url | `File | `Document ] * string * nestable_block_element with_location list | `Since of string | `Before of string * nestable_block_element with_location list | `Version of string ] type heading_level = [ `Title | `Section | `Subsection | `Subsubsection | `Paragraph | `Subparagraph ] type attached_block_element = [ nestable_block_element | `Tag of tag ] type heading_attrs = { heading_level : heading_level; heading_label_explicit : bool; (** Whether the label have been written by the user. *) } type block_element = [ nestable_block_element | `Heading of heading_attrs * Identifier.Label.t * link_content | `Tag of tag ] type docs = block_element with_location list type docs_or_stop = [ `Docs of docs | `Stop ] (** The synopsis is the first element of a comment if it is a paragraph. Otherwise, there is no synopsis. *) let synopsis = function | { Location_.value = `Paragraph p; _ } :: _ -> Some p | _ -> None
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>