remix-nlux
Version:
Remix IDE NLUX integration. Remix IDE is the leading IDE for building and deploying smart contracts on Ethereum. NLUX is a JavaScript and React library for building conversational AI experiences.
26 lines (22 loc) • 543 B
text/typescript
import type {MarkedOptions} from './MarkedOptions';
/**
* Gets the original marked default options.
*/
export function _getDefaults(): MarkedOptions {
return {
async: false,
breaks: false,
extensions: null,
gfm: true,
hooks: null,
pedantic: false,
renderer: null,
silent: false,
tokenizer: null,
walkTokens: null,
};
}
export let _defaults = _getDefaults();
export function changeDefaults(newDefaults: MarkedOptions) {
_defaults = newDefaults;
}