Current section

Files

Jump to
html_to_markdown lib html_to_markdown heading_style.ex
Raw

lib/html_to_markdown/heading_style.ex

# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:1fd6704fd6d78b7a56734eba9002f6091176de44010219b5f1a2e06b8e49fa56
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
# Issues & docs: https://github.com/kreuzberg-dev/alef
defmodule HtmlToMarkdown.HeadingStyle do
@moduledoc "Heading style options for Markdown output."
@type t :: :underlined | :atx | :atx_closed
@underlined :underlined
@atx :atx
@atx_closed :atx_closed
@spec underlined() :: t()
def underlined, do: @underlined
@spec atx() :: t()
def atx, do: @atx
@spec atx_closed() :: t()
def atx_closed, do: @atx_closed
end