dlwh / epic

**Archived** Epic is a high performance statistical parser written in Scala, along with a framework for building complex structured prediction models.

Home Page:http://scalanlp.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Directional quotes going the wrong way for UTF close-double-quote?

mrjf opened this issue · comments

https://github.com/dlwh/epic/blob/master/src/main/scala/epic/preprocess/TreebankTokenizer.scala#L52

      case "“" => inOpenQuote = true; output += "``"
      ...
      case "”" => inOpenQuote = false; output += "``"

Should that be a +="''" for the curly close quote?

Thanks for Epic!

thanks!