Current section

Files

Jump to
html_to_markdown lib html_to_markdown highlight_style.ex
Raw

lib/html_to_markdown/highlight_style.ex

# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:d26073a6a27f60bc75b06fa7f9854448517225e40561e1226b5ec4e55550913a
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
# Issues & docs: https://github.com/kreuzberg-dev/alef
defmodule HtmlToMarkdown.HighlightStyle do
@moduledoc "Highlight rendering style for `<mark>` elements."
@type t :: :double_equal | :html | :bold | :none
@double_equal :double_equal
@html :html
@bold :bold
@none :none
@spec double_equal() :: t()
def double_equal, do: @double_equal
@spec html() :: t()
def html, do: @html
@spec bold() :: t()
def bold, do: @bold
@spec none() :: t()
def none, do: @none
end