mirror of
https://github.com/dergigi/boris.git
synced 2025-12-18 15:14:20 +01:00
feat: initialize markr nostr bookmark client
- Add project structure with TypeScript, React, and Vite - Implement nostr authentication using browser extension (NIP-07) - Add NIP-51 compliant bookmark fetching and display - Create minimal UI with login and bookmark components - Integrate applesauce-core and applesauce-react libraries - Add responsive styling with dark/light mode support - Include comprehensive README with setup instructions This is a minimal MVP for a nostr bookmark client that allows users to view their bookmarks according to NIP-51 specification.
This commit is contained in:
53
node_modules/mdast-util-from-markdown/lib/index.d.ts
generated
vendored
Normal file
53
node_modules/mdast-util-from-markdown/lib/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,53 @@
|
||||
/**
|
||||
* Turn markdown into a syntax tree.
|
||||
*
|
||||
* @overload
|
||||
* @param {Value} value
|
||||
* @param {Encoding | null | undefined} [encoding]
|
||||
* @param {Options | null | undefined} [options]
|
||||
* @returns {Root}
|
||||
*
|
||||
* @overload
|
||||
* @param {Value} value
|
||||
* @param {Options | null | undefined} [options]
|
||||
* @returns {Root}
|
||||
*
|
||||
* @param {Value} value
|
||||
* Markdown to parse.
|
||||
* @param {Encoding | Options | null | undefined} [encoding]
|
||||
* Character encoding for when `value` is `Buffer`.
|
||||
* @param {Options | null | undefined} [options]
|
||||
* Configuration.
|
||||
* @returns {Root}
|
||||
* mdast tree.
|
||||
*/
|
||||
export function fromMarkdown(value: Value, encoding?: Encoding | null | undefined, options?: Options | null | undefined): Root;
|
||||
/**
|
||||
* Turn markdown into a syntax tree.
|
||||
*
|
||||
* @overload
|
||||
* @param {Value} value
|
||||
* @param {Encoding | null | undefined} [encoding]
|
||||
* @param {Options | null | undefined} [options]
|
||||
* @returns {Root}
|
||||
*
|
||||
* @overload
|
||||
* @param {Value} value
|
||||
* @param {Options | null | undefined} [options]
|
||||
* @returns {Root}
|
||||
*
|
||||
* @param {Value} value
|
||||
* Markdown to parse.
|
||||
* @param {Encoding | Options | null | undefined} [encoding]
|
||||
* Character encoding for when `value` is `Buffer`.
|
||||
* @param {Options | null | undefined} [options]
|
||||
* Configuration.
|
||||
* @returns {Root}
|
||||
* mdast tree.
|
||||
*/
|
||||
export function fromMarkdown(value: Value, options?: Options | null | undefined): Root;
|
||||
import type { Value } from 'micromark-util-types';
|
||||
import type { Encoding } from 'micromark-util-types';
|
||||
import type { Options } from './types.js';
|
||||
import type { Root } from 'mdast';
|
||||
//# sourceMappingURL=index.d.ts.map
|
||||
Reference in New Issue
Block a user