OSDN Git Service

Regular updates
[twpd/master.git] / nodejs.md
index 165cbbb..cf96438 100644 (file)
--- a/nodejs.md
+++ b/nodejs.md
@@ -1,9 +1,10 @@
 ---
 title: Node.js API
 category: Node.js
+layout: 2017/sheet
 ---
 
-## Globals
+### Globals
 
     __filename
     __dirname
@@ -21,14 +22,14 @@ category: Node.js
         }
     });
 
-## Snippets
+### Snippets
 
     info = require('../package.json')
     info.version
 
     process.stdout.write(util.inspect(objekt, false, Infinity, true) + '\n');
 
-## Spawn - passthru the in/out
+### Spawn - passthru the in/out
 
     var spawn = require('child_process').spawn;
     var proc = spawn(bin, argv, { stdio: 'inherit' });