quiver-to-obsidian
Version:
Convert quiver libraray to obsidian library
21 lines (20 loc) • 639 B
TypeScript
declare class Quiver {
private library;
private newNotePathRecord;
private outputQuiverPath;
private noteCount;
private needReplaceExtNames?;
private bar?;
private spinner?;
private constructor();
static newQuiver(libraryPath: string, extNames?: string[]): Promise<Quiver>;
transformQvLibraryToObsidian(outputPath: string): Promise<string>;
private walkThroughNotebookHierarchty;
private writeLibrary;
private writeNotebook;
private writeNote;
private writeNoteToMarkdown;
private transformQuiverResourceAndNoteLink;
private replaceResourceName;
}
export default Quiver;