···5050Warning: Failed to resolve reference unresolvedroot(parse_coment) Couldn't find "parse_coment"
5151]}
52525353-which highlights
5353+which here is highlighting an error in a reference in `odoc_parser.mli`.
54545555{2 Remapping dependencies}
5656
+3-1
doc/json.mld
···12121313{@json[
1414{
1515+ "header": "<h1>Module <code><span>Stdlib</span></code><a href=\"../../src/stdlib/stdlib.ml.html\" class=\"source_link\">Source</a></h1>",
1516 "type": "documentation",
1617 "uses_katex": false,
1718 "breadcrumbs": [
1819 {
1919- "name": "🏠",
2020+ "name": "Package index",
2021 "href": "../../../index.html",
2122 "kind": "leaf-page"
2223 },
···66676768The fields of the JSON are as follows:
68697070+- [header] is a string containing HTML for the header of the page.
6971- [type] field is either [documentation] or [source].
7072- [uses_katex] is [true] if the page has math entries ([{m ...}] or [{math ...}]).
7173- [breadcrumbs] is a list of breadcrumb entries with members [name], [href] and [kind]. If [href] is null then there is no index page at that location in the hierarchy. [kind] is one of
+16
doc/odoc_for_authors.mld
···489489 return 0
490490]}
491491492492+{4:code_block_tags Code Block Tags}
493493+Code blocks may have arbitrary metadata associated with them. This metadata is
494494+used, for example, for selecting code blocks when extracting them from a source file via the
495495+[odoc extract-code] command. The metadata may also be used by other tools that
496496+operate on code blocks, for example, {{!https://github.com/realworldocaml/mdx}mdx}.
497497+498498+The metadata follows immediately after the language header, and is a list of tags and bindings, separated by whitespace. Tags are simple
499499+keywords, and bindings are key-value pairs separated by an equals sign. If whitespace
500500+is needed in keys, values or tags, it should be enclosed in double quotes. For example:
501501+502502+{v
503503+{@ocaml tag1 "tag 2" key1="value 1" "key 2"="value 2"[
504504+ ... code goes here ...
505505+]}
506506+v}
507507+492508{4:verbatim_blocks Verbatim Blocks}
493509494510It is possible to write language agnostic code blocks, also called verbatim