From 60ea83840a88e7ee2dbfebac582ca12b16667727 Mon Sep 17 00:00:00 2001 From: anseki Date: Fri, 24 Apr 2015 03:31:27 +0900 Subject: [PATCH] Fix: markdown format --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d3df5a6..afa83ea 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Synchronous [Readline](http://nodejs.org/api/readline.html) for interactively ru readlineSync tries to let your script have a conversation with the user via a console, even when the input/output stream is redirected like `your-script bar.log`. - +
OptionsUtility MethodsPlaceholders
@@ -473,14 +473,14 @@ var loc = readlineSync.question('Hi ' + name + '! Where do you live? :'); * Let somebody hear our conversation in real time. It just uses a fifo with above sample code that was named `conv.js`. -Another console: +Another terminal: ```shell mkfifo /tmp/fifo cat /tmp/fifo ``` -My console: +My terminal: ```shell node conv.js >/tmp/fifo @@ -491,7 +491,7 @@ May I have your name? :Oz Hi Oz! Where do you live? :Emerald City ``` -And then, another console: +And then, another terminal shows this synchronously: ```console May I have your name? :Oz