summaryrefslogtreecommitdiffstats
path: root/parsers/QuoteSpecialText.java
Commit message (Collapse)AuthorAgeFilesLines
* add some code for debugging + TODO update.rsiddharth2014-07-171-0/+1
|
* parser/QuoteSpecialText doesn't escape `<` if it is part of a HTML tag.rsiddharth2013-11-121-6/+22
| | | | I'm trying accomadate HTML markup into the scruffy markup. ;)
* updated the year in the Copyright block in all source files.rsiddharth2013-11-021-2/+1
| | | | used license/Liberate.java to do the job. automation rocks.
* modified: parsers/QuoteSpecialText.java (regex that recognizes special-text ↵rsiddharth2013-03-101-1/+1
| | | | | | modified) now, HTML special codes/numbers are not quoted by this class.
* new feature: special text (symbols) are quoted to HTML number inside arsiddharth2012-11-111-2/+2
| | | | | | | | | | | | | code-block modified: parsers/CodeBlocks.java (new class 'SymbolMap' which has a list of symbols & their corresponding HTML number) ( quote() in 'CodeBlock' class uses the SymbolMap to quote text) parsers/ParserList.java (list re-ordered, CodeBlock has gone up) parsers/QuoteSpecialText.java ( if regex matches '&#35;', it leaves the text un-quoted)
* added:rsiddharth2012-11-011-0/+46
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