Revision: 12682
http://sourceforge.net/p/foray/code/12682
Author: victormote
Date: 2022-06-21 17:32:18 +0000 (Tue, 21 Jun 2022)
Log Message:
-----------
Improvements to terminal element processing.
Modified Paths:
--------------
trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/SpellChecker.java
Modified: trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/SpellChecker.java
===================================================================
--- trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/SpellChecker.java 2022-06-21 17:27:29 UTC (rev 12681)
+++ trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/SpellChecker.java 2022-06-21 17:32:18 UTC (rev 12682)
@@ -151,7 +151,8 @@
/** The list of elements that should never be straddled by a word. */
private List<String> elementTerminalList = Arrays.asList(new String[] {"Para", "Sidenote", "Signature", "EmDash",
- "PoetryLine", "Title", "Subtitle", "Dateline", "TitlePara"});
+ "PoetryLine", "Title", "Subtitle", "Dateline", "TitlePara", "TitleAbbrev", "LineBreak", "CopyrightDate",
+ "BookmarkTitle"});
/** Map whose key is elements that are actually tokens for text, and whose value is that text. */
private Map<String, String> textElementMap = new HashMap<String, String>();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|