Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add canonical tags to a few types so odoc knows where to find them #307

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/ast_block.ml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,19 @@ module InlineContent = struct
end

module List_types = struct
(** @canonical Omd.list_type *)
type list_type =
| Ordered of int * char
| Bullet of char

(** @canonical Omd.list_spacing *)
type list_spacing =
| Loose
| Tight
end

module Table_alignments = struct
(** @canonical Omd.cell_alignment *)
type cell_alignment =
| Default
| Left
Expand Down
2 changes: 2 additions & 0 deletions src/ast_inline.ml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
those somehow? Or should we include these in the document model, but
but with the caveat that most renderings of the document don't support
attributes in these nodes? *)

(** @canonical Omd.inline *)
type 'attr inline =
| Concat of 'attr * 'attr inline list
| Text of 'attr * string
Expand Down
Loading