rehamaltamimi / gwtwiki

Automatically exported from code.google.com/p/gwtwiki
0 stars 0 forks source link

PlainTextConverter ignores the text field in between [ ] #34

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
The PlainTextConverter ignores the text field in between [ ]. For
example, here is test code.

package info.bliki.wiki;

import info.bliki.wiki.filter.PlainTextConverter;
import info.bliki.wiki.model.WikiModel;

public class PlainTextConverterExample {
        public static final String TEST = "This is a [http://
www.test.com Link Example] test";

        public static void main(String[] args) {
                WikiModel wikiModel = new WikiModel("http://
www.mywiki.com/wiki/${image}", "http://www.mywiki.com/wiki/${title}");
                String plainStr = wikiModel.render(new
PlainTextConverter(), TEST);
                System.out.print(plainStr);
        }

} 

Original issue reported on code.google.com by axelclk@gmail.com on 25 Jan 2010 at 6:17

GoogleCodeExporter commented 8 years ago
Fixed. See: http://code.google.com/p/gwtwiki/source/detail?r=839

Original comment by axelclk@gmail.com on 25 Jan 2010 at 6:20