##// END OF EJS Templates
txt->qsps, remove FOR and IMG, broken LOCAL and LOOP
txt->qsps, remove FOR and IMG, broken LOCAL and LOOP

File last commit:

r49:cd6f7adb default
r60:517f9c14 default
Show More
class.lisp
14 lines | 702 B | text/x-common-lisp | CommonLispLexer
(in-package txt2web)
(defclass compiler ()
((body :accessor body :initform #.(load-src "extras/body.html"))
(css :accessor css :initform (list #.(load-src "extras/default.css")))
(js :accessor js :initform (reverse
(list
'#.(read-progn-from-string (load-src "src/main.ps"))
'#.(read-progn-from-string (load-src "src/api.ps"))
'#.(read-progn-from-string (load-src "src/intrinsics.ps")))))
(compile :accessor compile-only :initarg :compile)
(target :accessor target :initarg :target)
(beautify :accessor beautify :initarg :beautify)))