From 0797c89c386e2c94b0288d018ed1301e552bc7f0 Mon Sep 17 00:00:00 2001 From: Nat Pryce Date: Mon, 22 Jul 2013 22:46:29 +0100 Subject: [PATCH] Fixed formatting in README --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 072adca..68b1972 100644 --- a/README.md +++ b/README.md @@ -240,13 +240,13 @@ You can change the escaping behavior when obtaining a compiler, to support file Implement the Escaping interface. If you only need to replace fixed strings in the text, you can subclass SimpleEscaping: - public class StrangeFormatEscaping extends SimpleEscaping { - public StrangeFormatEscaping() { - super(new String[][] { - {"[", "[["}, - {"]", "]]"} - }); - } + public class StrangeFormatEscaping extends SimpleEscaping { + public StrangeFormatEscaping() { + super(new String[][] { + {"[", "[["}, + {"]", "]]"} + }); + } Pass an instance of your Escaping implementation when obtaining a compiler: