Current section

Files

Jump to
html_to_markdown lib html_to_markdown preprocessing_preset.ex
Raw

lib/html_to_markdown/preprocessing_preset.ex

# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:af8cedf9c65d947616fa15f34e2f87f140cd79de02c9e840259d67beb0606eaf
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
# Issues & docs: https://github.com/kreuzberg-dev/alef
defmodule HtmlToMarkdown.PreprocessingPreset do
@moduledoc "HTML preprocessing aggressiveness level."
@type t :: :minimal | :standard | :aggressive
@minimal :minimal
@standard :standard
@aggressive :aggressive
@spec minimal() :: t()
def minimal, do: @minimal
@spec standard() :: t()
def standard, do: @standard
@spec aggressive() :: t()
def aggressive, do: @aggressive
end