Main entry point for the markmv library
Creates a new FileOperations instance for performing markdown file operations. This is the recommended way to get started with the library.
A new FileOperations instance
import { createMarkMv } from 'markmv'; const markmv = createMarkMv(); const result = await markmv.moveFile('old.md', 'new.md'); Copy
import { createMarkMv } from 'markmv'; const markmv = createMarkMv(); const result = await markmv.moveFile('old.md', 'new.md');
Main entry point for the markmv library
Creates a new FileOperations instance for performing markdown file operations. This is the recommended way to get started with the library.