Remove quotes.

This commit is contained in:
Achim D. Brucker 2018-04-29 00:11:33 +01:00
parent e6b5d8bf5c
commit cc84c364a4
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ object DofConverter {
def deMarkUpArgList(tokens: List[LaTeXToken]): List[LaTeXToken] = {
tokens match {
case CURLYOPEN :: COMMAND("""\isacharprime""") :: CURLYCLOSE :: CURLYOPEN :: COMMAND("""\isacharprime""") :: CURLYCLOSE :: tail
=> RAWTEXT(""""""") :: deMarkUpArgList(tail)
=> RAWTEXT("") :: deMarkUpArgList(tail)
case CURLYOPEN :: COMMAND("""\isachardoublequoteopen""") :: CURLYCLOSE :: tail => RAWTEXT("""{""") :: deMarkUpArgList(tail)
case CURLYOPEN :: COMMAND("""\isachardoublequoteclose""") :: CURLYCLOSE :: tail => RAWTEXT("""}""") :: deMarkUpArgList(tail)
case t :: tail => t :: deMarkUpArgList(tail)