summaryrefslogtreecommitdiffstats
path: root/parsers/ParserList.java
diff options
context:
space:
mode:
authorrsiddharth <rsiddharth@ninthfloor.org>2012-11-01 10:07:41 +0530
committerrsiddharth <rsiddharth@ninthfloor.org>2012-11-01 10:07:41 +0530
commit14e4df00173c52b6d4932402614e2531eba9abd6 (patch)
treeec0f81ba8a329dcb1f36f08467ddf1d2f02449fe /parsers/ParserList.java
parent0242880b18f077ee9fbb824188f97507a349a0ee (diff)
added:
parsers/QuoteSpecialText.java (new parser to quote special text) modified: parsers/CodeBlocks.java (the regex was made more strict) parsers/Footer.java (fix: appendTail() was added after while()) parsers/ParserList.java (new parser, see above) (parser order changed) todo
Diffstat (limited to 'parsers/ParserList.java')
-rw-r--r--parsers/ParserList.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/parsers/ParserList.java b/parsers/ParserList.java
index f57a6b8..85e3d17 100644
--- a/parsers/ParserList.java
+++ b/parsers/ParserList.java
@@ -28,15 +28,16 @@ public class ParserList {
public ParserList() {
parsers = new ArrayList<Parser>();
// add Parsers. NOTE: parser order is significant.
+ parsers.add(new QuoteSpecialText());
parsers.add(new DocumentName());
parsers.add(new DocumentDate());
parsers.add(new WordDecoration());
parsers.add(new CodeBlocks());
parsers.add(new Headings());
- parsers.add(new Paragraphs());
parsers.add(new Links());
parsers.add(new Images());
parsers.add(new Footer());
+ parsers.add(new Paragraphs());
parsers.add(new BackButton());
parsers.add(new Header());
}