We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Right now I'm using docs-builder and this workaround for copying static folder to the results dir:
static
(defmethod docs-builder/builder:build :around ((builder t) (system (eql (asdf:registered-system "multiplication-docs"))) &rest rest &key local root-sections) (declare (ignore rest local root-sections)) (let* ((target-dir (call-next-method)) (static-dir (namestring (merge-pathnames (make-pathname :directory '(:relative "static")) target-dir)))) (uiop:run-program (format nil "rm -fr ~A" static-dir)) ;; We keep static in the root folder to make images accessable ;; from the README (uiop:run-program (format nil "cp -R static ~A" static-dir))))
It would be cool to define the image in the lisp code like this:
(defasset @demo.gif #"static/demo.gif")
And to refer it in the documentation as @DEMO.GIF having this to be replaced with the path to the file.
@DEMO.GIF
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Right now I'm using docs-builder and this workaround for copying
static
folder to the results dir:It would be cool to define the image in the lisp code like this:
And to refer it in the documentation as
@DEMO.GIF
having this to be replaced with the path to the file.The text was updated successfully, but these errors were encountered: