3b
3b
Currently HTML is generated with some newlines and no indentation. Working indentation would be nice to have, as would an option to add no extra whitespace including newlines. `*PADDING*` and...
in lists with some items separated by blank lines, we currently treat all elements as paragraphs. markdown.pl only treat entries before/after blank lines as paragraph (2,3,4 in example). Github treats...
The grammar should match all input, but in case of bugs it would be nice to (optionally?) catch parse errors and return something useful anyway. - first step would probably...
[cl-mongo](https://github.com/fons/cl-mongo) `README.md` embeds documentation created with [docmentation template](http://weitz.de/documentation-template/), which doesn't close `` tags, and the embedded chunks are `` followed immediately by a `` in 1 html block rather than...
The minion IRC bot tries to retrieve the source for cliki pages to extract a description. On the old cliki it could do so by appending `?source` to a page's...
on: sbcl `2.1.3.122.master.5-177bc6b03`, x8664 windows GNU Emacs 27.1 (build 1, x86_64-w64-mingw32) of 2020-11-19 slime-v2.26.1 ```lisp (let ((*break-on-signals* t)) (loop repeat 500 ;; random chars so emacs has to look for...
For CI, I'd like to test some code on both 32 and 64bit lisps. `curl -L https://raw.githubusercontent.com/roswell/roswell/master/scripts/install-for-ci.sh | sh` works for `LISP=ccl32`, but `LISP=sbcl32` and `LISP=clisp32` error. ## Environment Github...
The 1.12.1 windows .zip files (https://github.com/Clozure/ccl/releases/download/v1.12.1/ccl-1.12.1-windowsx86.zip and https://github.com/Clozure/ccl/releases/download/v1.12.1/windowsx86.zip) seem to be using `\` as path separator instead of `/` as required by zip spec. This confuses the roswell (roswell/roswell#491), preventing...
on Armed Bear Common Lisp 1.6.0 Java 11.0.6 Debian OpenJDK 64-Bit Server VM ```lisp (defun foo () (let ((b 123)) (flet ((set-b (x) (setf b x))) (declare (inline set-b)) (format...
see http://www.lispworks.com/documentation/HyperSpec/Body/22_cca.htm `(format t "~,5f" 1)` errors with "The value of MEZZANO.FORMAT::PADCHAR is 5, which is not of type CHARACTER." which would be correct for `~,5d` but not `~,5f`. `(format...