Skip to content

Commit

Permalink
Closes #52
Browse files Browse the repository at this point in the history
  • Loading branch information
sylvainhalle committed Aug 5, 2019
1 parent ba0e89c commit 58bfee4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,9 @@ protected AnnotatedString removeMarkup(AnnotatedString as_out, int line_pos)
// Ligatures
as_out = as_out.replaceAll("\\\\oe\\{\\}", "œ");
as_out = as_out.replaceAll("\\\\ae\\{\\}", "æ");
// Escaped braces
as_out = as_out.replaceAll("\\\\\\{", "{");
as_out = as_out.replaceAll("\\\\\\}", "}");
// Line breaks and paragraphs
as_out = as_out.replaceAll("\\\\\\\\", "");
as_out = as_out.replaceAll("\\\\par(\\b)", "$1");
Expand Down
2 changes: 1 addition & 1 deletion config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
<name>Language Tool</name>
<classname>org.languagetool.JLanguageTool</classname>
<files>
<jar>https://github.com/sylvainhalle/languagetool/releases/download/v4.1b-standalone/languagetool-bundle-4.1b.jar</jar>
<zip>https://github.com/sylvainhalle/languagetool/releases/download/v4.6-standalone/languagetool-bundle-4.6.zip</zip>
</files>
<bundle>true</bundle>
</dependency>
Expand Down

0 comments on commit 58bfee4

Please sign in to comment.