From 7f71228c408684245054f96b90ea5f956784240b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Reimar=20D=C3=B6ffinger?= Date: Fri, 28 Aug 2015 13:51:39 +0200 Subject: [PATCH] Try filtering out anagrams from FR dictionary. --- .../dictionary/parser/wiktionary/WholeSectionToHtmlParser.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/hughes/android/dictionary/parser/wiktionary/WholeSectionToHtmlParser.java b/src/com/hughes/android/dictionary/parser/wiktionary/WholeSectionToHtmlParser.java index 8a4bb21..e4bbb16 100644 --- a/src/com/hughes/android/dictionary/parser/wiktionary/WholeSectionToHtmlParser.java +++ b/src/com/hughes/android/dictionary/parser/wiktionary/WholeSectionToHtmlParser.java @@ -233,7 +233,7 @@ public class WholeSectionToHtmlParser extends AbstractWiktionaryParser { }); - final Pattern frSkipSections = Pattern.compile(".*(Traductions).*"); + final Pattern frSkipSections = Pattern.compile(".*(Traductions|[Aa]nagrammes).*"); isoToLangConfig.put("FR", new LangConfig() { @Override public boolean skipSection(String headingText) { -- 2.43.0