From 7613a4919706387a2c6396a92963bac4ad23274a Mon Sep 17 00:00:00 2001
From: Nikolaus Waxweiler <madigens@gmail.com>
Date: Mon, 27 Aug 2018 10:10:45 +0100
Subject: [PATCH] ISSUE_TEMPLATE.md: Add mention of online formatter (#481)

People can try out https://black.now.sh/?version=master to test against master. That should make issue reporting easier.

See https://github.com/jpadilla/black-playground/issues/6#issuecomment-416088863. Thanks @jpadilla!
---
 .github/ISSUE_TEMPLATE.md | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md
index b23af35..2dfd64b 100644
--- a/.github/ISSUE_TEMPLATE.md
+++ b/.github/ISSUE_TEMPLATE.md
@@ -6,9 +6,11 @@ Python version:
 *Black* version:
 Does also happen on master:
 
-To answer the last question, follow these steps:
-* create a new virtualenv (make sure it's the same Python version);
-* clone this repository;
-* run `pip install -e .`;
-* make sure it's sane by running `python setup.py test`; and
-* run `black` like you did last time.
+To answer the last question, you have two options:
+1. Use the online formatter at https://black.now.sh/?version=master, which will use the latest master branch.
+2. Or run black on your machine:
+    * create a new virtualenv (make sure it's the same Python version);
+    * clone this repository;
+    * run `pip install -e .`;
+    * make sure it's sane by running `python setup.py test`; and
+    * run `black` like you did last time.
-- 
2.39.5