Current section

Files

Jump to
html_to_markdown lib html_to_markdown whitespace_mode.ex
Raw

lib/html_to_markdown/whitespace_mode.ex

# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:09de3f00c1ffefffc728fb7a76fcab3f6279209c3b56a0406fe3edebe681db0f
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
# Issues & docs: https://github.com/kreuzberg-dev/alef
defmodule HtmlToMarkdown.WhitespaceMode do
@moduledoc "Whitespace handling strategy during conversion."
@type t :: :normalized | :strict
@normalized :normalized
@strict :strict
@spec normalized() :: t()
def normalized, do: @normalized
@spec strict() :: t()
def strict, do: @strict
end