blob: 80c24aad80fa95315371920bc564b0d678f562ac (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
;; SPDX-License-Identifier: EUPL-1.2
;; SPDX-FileCopyrightText: 2025 Uko Kokņevičs <perkontevs@gmail.com>
(defpackage :ukkoclot/tg-types/parse-mode
(:use :c2cl :ukkoclot/enum)
(:export :html :markdown-legacy :markdown :parse-mode))
(in-package :ukkoclot/tg-types/parse-mode)
(define-enum parse-mode
(markdown-legacy "Markdown")
(markdown "MarkdownV2")
(html "HTML"))
|