Current section

Files

Jump to
html_to_markdown lib html_to_markdown text_direction.ex
Raw

lib/html_to_markdown/text_direction.ex

# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:cfa907c585c42a86fa984ea33540e9aac53d9c503a4cc74bea79a4afc543ee8b
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
# Issues & docs: https://github.com/kreuzberg-dev/alef
defmodule HtmlToMarkdown.TextDirection do
@moduledoc "Text directionality of document content."
@type t :: :left_to_right | :right_to_left | :auto
@left_to_right :left_to_right
@right_to_left :right_to_left
@auto :auto
@spec left_to_right() :: t()
def left_to_right, do: @left_to_right
@spec right_to_left() :: t()
def right_to_left, do: @right_to_left
@spec auto() :: t()
def auto, do: @auto
end