This commit contains the following changes:
M .gitignore
A Cargo.lock
A Cargo.toml
A PMOMusic/Cargo.toml
A PMOMusic/src/main.rs
D README.md
A Readme.md
16 lines
215 B
JavaScript
Executable File
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);
|