diff options
| author | riton <riton@riton.home> | 2025-03-16 18:47:09 +0300 | 
|---|---|---|
| committer | riton <riton@riton.home> | 2025-03-16 18:47:09 +0300 | 
| commit | 2d48f085273ea1d427cdaa9faf8c82897e4badeb (patch) | |
| tree | ee46bcaa9860dfbef5d4fbda4b79e232ee9b41e6 | |
| parent | a661c54e539e6ffcfcdc68ca8ce2c398feb8411e (diff) | |
proje init
| -rw-r--r-- | html-jen.asd | 6 | ||||
| -rw-r--r-- | paket.lisp | 4 | 
2 files changed, 10 insertions, 0 deletions
| diff --git a/html-jen.asd b/html-jen.asd new file mode 100644 index 0000000..dec6e73 --- /dev/null +++ b/html-jen.asd @@ -0,0 +1,6 @@ +(defsystem html-jen +  :author "Emre Akan" +  :license "GPLv3" +  :depends-on (uiop) +  :description "Markdown dosyalarından HTML jenerasyonu yapan yazılım." +  :components ((:file "paket"))) diff --git a/paket.lisp b/paket.lisp new file mode 100644 index 0000000..fb738a4 --- /dev/null +++ b/paket.lisp @@ -0,0 +1,4 @@ +(defpackage :html-jen +  (:use :common-lisp) +  ;; (:export sembol...) +  ) | 
