Before tackling the documentation issue, I think we should agree on how to do it.
One think I definitely want is that all files should have a header in the style of elisp packages. I propose the following structure for the header:
;;; <file-name>.scm --- <synopsis>
;; <copyright assignments>
;; <license>
;;; Commentary:
;; <purpose of the file>.
;;; Code:
Before tackling the [documentation issue](https://codeberg.org/lapislazuli/blue/issues/31), I think we should agree on how to do it.
One think I definitely want is that **all** files should have a header in the style of elisp packages. I propose the following structure for the header:
```
;;; <file-name>.scm --- <synopsis>
;; <copyright assignments>
;; <license>
;;; Commentary:
;; <purpose of the file>.
;;; Code:
```