Sha256: df8a4169f7f97022d0e09a8951c83d5ca4a150b4548b6bb5a5be5d8ea7e5cf62

Contents?: true

Size: 812 Bytes

Versions: 2

Compression:

Stored size: 812 Bytes

Contents

//Written using Nila. Visit http://adhithyan15.github.io/nila
(function() {
  var commandline_args, parse_markdown;

  // Marky is a simple markdown parser written in Nila and runs on Nodejs. 

  // This will demonstrate the power and expressiveness of Nila. We will also 

  // provide the Ruby version of the parser so that you can see how easy it

  // is to port code from Ruby to Javascript using Nila

  // This parser was written by Sri Madhavi Rajasekaran and is released under

  // the MIT License.

  // If you want to learn more about Nila, please visit http://adhithyan15.github.io/nila

  parse_markdown = function() {
  };

  commandline_args = [];

  process.argv.forEach(function(val,index,array) {
    commandline_args.push(val);
  });

  console.log(commandline_args.slice(2));

}).call(this);

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
nilac-0.0.4.3.9.4 examples/marky.js
nilac-0.0.4.3.9.3 examples/marky.js