summaryrefslogtreecommitdiffstats
path: root/parsers/Images.java
diff options
context:
space:
mode:
Diffstat (limited to 'parsers/Images.java')
-rw-r--r--parsers/Images.java7
1 files changed, 3 insertions, 4 deletions
diff --git a/parsers/Images.java b/parsers/Images.java
index f38ef46..9707051 100644
--- a/parsers/Images.java
+++ b/parsers/Images.java
@@ -1,6 +1,5 @@
/*+
- * Copyright 2012 rsiddharth
- * Email: <rsiddharth@ninthfloor.org>
+ * Copyright 2012, 2013 rsiddharth <rsiddharth@ninthfloor.org>
*
* This file is part of Scruf.
*
@@ -39,10 +38,10 @@ public class Images implements Parser {
replacementString.append(openTag);
// if the "title" is given add to the _img_ tag.
if(matcher.group(3)!=null) {
- replacementString.append("4 \\] \" title=\"$4\"");
+ replacementString.append("4 \\]\" title=\"$4\"");
}
else {
- replacementString.append("1\"");
+ replacementString.append("1 \\]\"");
}
// close the _img_ tag.
replacementString.append(closeTag);