File size: 215 Bytes
bc20498
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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);