This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!lisp --script | |
(defpackage cve.pre-commit | |
(:use :cl :named-readtables :clesh :alexandria)) | |
(in-package cve.pre-commit) | |
(in-readtable clesh:syntax) | |
(defvar *interactive* nil |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defpackage bibtex | |
(:use :cl :parser-combinators :alexandria) | |
(:export parse) | |
(:documentation | |
"Parse bibtex files. | |
The current state is quite fragile and didn't go through any extensive testing. | |
There is one external function: PARSE.")) |