@zettlr/citr
Version:
A small library to parse Markdown Citeproc notation as CSL JSON
19 lines (18 loc) • 630 B
TypeScript
/*!
* BEGIN HEADER
*
* Contains: Regular expressions for various tasks.
* Maintainer: Hendrik Erz
* License: GNU GPL v3
*
* Description: Citr needs to extract a lot of different functionality, so we
* need many different regular expressions. In this file, we
* collect them all to make it easy to maintain them.
*
* END HEADER
*/
export declare const fullCitationValidatorRE: RegExp;
export declare const citationExtractionRE: RegExp;
export declare const strictCitekeyValidatorRE: RegExp;
export declare const looseCitekeyValidatorRE: RegExp;
export declare const locatorRE: RegExp;