Mariano Montone
Mariano Montone
If you use reStructuredText and Sphinx you can get very high-quality nice looking output, both in HTML and PDF. I'm using it for documenting my projects.
I thought that perhaps multipart requests could be detected and treated in a special way, just foward them "somehow" (I don't know how to do that). Thanks for looking into...
You are right.
I'm doing some work here: https://github.com/jscl-project/jscl/discussions/441
Hi, I'm using this macro for dealing with objects and properties, that I think reduces a bit the boilerplate: ```lisp (defmacro jscl::with-object-properties (properties js-object &body body) "Access properties of JS-OBJECT...
Also this utility for creating Javascript objects with properties more easily: ```lisp (defun jscl::new-with-properties (&rest props) "Create a new Javascript object with properties. PROPS is a property list with property...
Nice. I think it would be great if we could agree on a set of FFI utils and include with JSCL. Also improve documentation on FFI specially. Took me a...
Keys already appear in description: ``` CL-USER> (describe #j:console) # Class: # Signature: [object Object] Keys: (assert clear count countReset debug error info log table trace warn dir dirxml group...
Hi @alx-a, thanks you for your contribution! I think this is a good start. I don't consider myself great at documentation, so my feedback is going to be limited. You...
I don't have any tips on documentation at pure REPL, apart from using `describe` function. For SLIME, we can mention the `slime-describe-*` Emacs commands (C-c C-d d by default I...