Current section

Files

Jump to
html_to_markdown lib html_to_markdown annotation_kind.ex
Raw

lib/html_to_markdown/annotation_kind.ex

# This file is auto-generated by alef. DO NOT EDIT.
defmodule HtmlToMarkdown.AnnotationKind do
@moduledoc "The type of an inline text annotation."
@type t :: term()
@type bold :: :bold
@type italic :: :italic
@type underline :: :underline
@type strikethrough :: :strikethrough
@type code :: :code
@type subscript :: :subscript
@type superscript :: :superscript
@type highlight :: :highlight
@type link :: %{type: :link, url: term(), title: term()}
end