Skip to content

Commit

Permalink
Handle in-field quotes under quotes="false"
Browse files Browse the repository at this point in the history
  • Loading branch information
fbennett committed May 23, 2017
1 parent b49f790 commit d8d999d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/util_flipflop.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,8 @@ CSL.Util.FlipFlopper = function(state) {
outer: "true",
flipflop: {
"true": "inner",
"inner": "true"
"inner": "true",
"false": "true"
}
},
" \'": {
Expand All @@ -121,7 +122,8 @@ CSL.Util.FlipFlopper = function(state) {
outer: "inner",
flipflop: {
"true": "inner",
"inner": "true"
"inner": "true",
"false": "true"
}
}
}
Expand Down

0 comments on commit d8d999d

Please sign in to comment.