summaryrefslogtreecommitdiff
path: root/src/tg/parse-mode.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tg/parse-mode.lisp')
-rw-r--r--src/tg/parse-mode.lisp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/tg/parse-mode.lisp b/src/tg/parse-mode.lisp
new file mode 100644
index 0000000..57ef2af
--- /dev/null
+++ b/src/tg/parse-mode.lisp
@@ -0,0 +1,11 @@
1;; SPDX-License-Identifier: EUPL-1.2
2;; SPDX-FileCopyrightText: 2025 Uko Kokņevičs <perkontevs@gmail.com>
3(defpackage :ukkoclot/tg/parse-mode
4 (:use :c2cl :ukkoclot/enum)
5 (:export :html :markdown-legacy :markdown :parse-mode))
6(in-package :ukkoclot/tg/parse-mode)
7
8(define-enum parse-mode
9 (markdown-legacy "Markdown")
10 (markdown "MarkdownV2")
11 (html "HTML"))