Files
blog/node_modules/marked/bin/marked.js
2025-07-16 16:30:56 +00:00

16 lines
215 B
JavaScript
Executable File

#!/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);