obsidian-dev-utils
Version:
This is the collection of useful functions that you can use for your Obsidian plugin development
14 lines (13 loc) • 366 B
text/typescript
/**
* @packageDocumentation
*
* Utilities for working with MarkdownView
*/
import type { MarkdownView } from 'obsidian';
/**
* Get the full HTML content of the current MarkdownView
*
* @param view - The MarkdownView to get the HTML from
* @returns The full HTML of the MarkdownView
*/
export declare function getFullContentHtml(view: MarkdownView): string;