From 06830e88dacb45d9e13ccb1932fe345cdf3e8a14 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Fri, 21 Mar 2014 13:02:02 +0100 Subject: [PATCH] Readme.md: fix inadvertent markdown italicization Escape a * that made GitHub's markdown parser italicize the paragraph. --- Readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Readme.md b/Readme.md index c5a34e8..6bf0571 100644 --- a/Readme.md +++ b/Readme.md @@ -68,7 +68,7 @@ setInterval(function(){ ## Wildcards - The "*" character may be used as a wildcard. Suppose for example your library has debuggers named "connect:bodyParser", "connect:compress", "connect:session", instead of listing all three with `DEBUG=connect:bodyParser,connect.compress,connect:session`, you may simply do `DEBUG=connect:*`, or to run everything using this module simply use `DEBUG=*`. + The `*` character may be used as a wildcard. Suppose for example your library has debuggers named "connect:bodyParser", "connect:compress", "connect:session", instead of listing all three with `DEBUG=connect:bodyParser,connect.compress,connect:session`, you may simply do `DEBUG=connect:*`, or to run everything using this module simply use `DEBUG=*`. You can also exclude specific debuggers by prefixing them with a "-" character. For example, `DEBUG=* -connect:*` would include all debuggers except those starting with "connect:".