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:56fa5bb8e389004e9c7320febfe2f3ebc8ff8c2a66af7b55a7b50cf6e0c278d1
# 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