diff options
author | Juan Manuel Tomás <jtomas1815@gmail.com> | 2022-08-06 03:15:55 -0300 |
---|---|---|
committer | Juan Manuel Tomás <jtomas1815@gmail.com> | 2022-08-06 03:15:55 -0300 |
commit | 89e1a73a4bb154f2e2c6069eb7273abce9984cdd (patch) | |
tree | 4a3d74e0e997b758208ae9c01b1a2bfda7abc9cb /package.lisp | |
parent | ef42aa8681ac2cab218c9911afc894e5c0debb91 (diff) | |
download | shtml-89e1a73a4bb154f2e2c6069eb7273abce9984cdd.tar.gz shtml-89e1a73a4bb154f2e2c6069eb7273abce9984cdd.zip |
Add support for most html tags
Diffstat (limited to 'package.lisp')
-rw-r--r-- | package.lisp | 101 |
1 files changed, 100 insertions, 1 deletions
diff --git a/package.lisp b/package.lisp index 388d21e..27fa91f 100644 --- a/package.lisp +++ b/package.lisp @@ -1,2 +1,101 @@ (uiop:define-package #:shtml - (:use #:cl)) + (:use #:cl) + (:export #:a + #:abbr + #:address + #:area + #:article + #:aside + #:audio + #:b + #:base + #:blockquote + #:body + #:br + #:button + #:canvas + #:caption + #:cite + #:code + #:col + #:colgroup + #:data + #:datalist + #:dd + #:del + #:details + #:div + #:dl + #:dt + #:em + #:embed + #:fieldset + #:figcaption + #:figure + #:footer + #:form + #:h1 + #:h2 + #:h3 + #:h4 + #:h5 + #:h6 + #:head + #:head + #:header + #:hr + #:html + #:i + #:img + #:input + #:ins + #:label + #:legend + #:li + #:link + #:main + #:mark + #:meta + #:nav + #:noscript + #:object + #:ol + #:optgroup + #:option + #:output + #:p + #:param + #:picture + #:pre + #:progress + #:q + #:s + #:samp + #:script + #:section + #:select + #:small + #:source + #:span + #:strong + #:style + #:sub + #:summary + #:sup + #:svg + #:table + #:tbody + #:td + #:template + #:textarea + #:tfoot + #:th + #:thead + #:title + #:tr + #:track + #:u + #:ul + #:var + #:video + #:wbr)) |