UNPKG

@diplodoc/transform

Version:

A simple transformer of text in YFM (Yandex Flavored Markdown) to HTML

17 lines (16 loc) 714 B
export declare const quoteBalanced: RegExp; export declare const vars: RegExp; export declare const singleVariable: RegExp; export declare const variable: RegExp; export declare const tagLine: RegExp; export declare const rangeLine: RegExp; export declare const operators: RegExp[]; export declare const isSupportedMethod: (exp: string) => boolean; export declare const getParsedMethod: (exp: String) => { name: string; args: string[]; } | null; export declare const isLiteral: (str: string) => boolean; export declare const isVariable: (str: string) => boolean; export declare const isSingleVariable: (str: string) => boolean; export declare function parseLiteral(str: string): string | number | boolean;