16 lines
215 B
JavaScript
Raw Permalink Normal View History

2025-02-28 19:43:11 +08:00
#!/usr/bin/env node
/**
* Marked CLI
* Copyright (c) 2011-2013, Christopher Jeffrey (MIT License)
*/
import { main } from './main.js';
/**
* Expose / Entry Point
*/
process.title = 'marked';
main(process);