Fix bin/publish: use correct .env path for rspade_system Fix bin/publish script: prevent grep exit code 1 from terminating script 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
15 lines
548 B
TypeScript
Executable File
15 lines
548 B
TypeScript
Executable File
/**
|
||
* @param value Markdown to parse (`string` or `Buffer`).
|
||
* @param [encoding] Character encoding to understand `value` as when it’s a `Buffer` (`string`, default: `'utf8'`).
|
||
* @param [options] Configuration
|
||
*/
|
||
export const micromark: ((
|
||
value: Value,
|
||
encoding: Encoding,
|
||
options?: Options
|
||
) => string) &
|
||
((value: Value, options?: Options) => string)
|
||
export type Options = import('micromark-util-types').Options
|
||
export type Value = import('micromark-util-types').Value
|
||
export type Encoding = import('micromark-util-types').Encoding
|