UNPKG

215 BJavaScriptView Raw
1#!/usr/bin/env node
2
3/**
4 * Marked CLI
5 * Copyright (c) 2011-2013, Christopher Jeffrey (MIT License)
6 */
7
8import { main } from './main.js';
9
10/**
11 * Expose / Entry Point
12 */
13
14process.title = 'marked';
15main(process);