aboutsummaryrefslogtreecommitdiff
path: root/mardown/ast_literal.go
diff options
context:
space:
mode:
authorAnhgelus Morhtuuzh <william@herges.fr>2025-09-30 20:06:54 +0200
committerAnhgelus Morhtuuzh <william@herges.fr>2025-09-30 20:06:54 +0200
commit1d524762bc56950a85aa748aa873901621741dc7 (patch)
treeb896618b8d4bb138de36d52d8833768f83689333 /mardown/ast_literal.go
parent9b6eb662150adbcd5ffe293a8719ffc4d7c14996 (diff)
refactor(markdown): create top layer type paragraph
Diffstat (limited to 'mardown/ast_literal.go')
-rw-r--r--mardown/ast_literal.go9
1 files changed, 0 insertions, 9 deletions
diff --git a/mardown/ast_literal.go b/mardown/ast_literal.go
deleted file mode 100644
index 23b9004..0000000
--- a/mardown/ast_literal.go
+++ /dev/null
@@ -1,9 +0,0 @@
-package mardown
-
-import "html/template"
-
-type astLiteral string
-
-func (a astLiteral) Eval() (template.HTML, error) {
- return template.HTML(template.HTMLEscapeString(string(a))), nil
-}