map missing character codes directly #44

previously if no matching unicode was found for a character code we would return a null letter. instead we now map from the character code directly to a character. this seems to work for most documents, except where there are ligatures, e.g. fi or ff, but is still better than not returning anything.
This commit is contained in:
Eliot Jones
2019-07-07 13:53:25 +01:00
parent 198cca1336
commit 557d8bc948
2 changed files with 3 additions and 1 deletions

View File

@@ -24,7 +24,7 @@
var page2 = document.GetPage(2);
Assert.Contains("isθc={θc1,θc2,...,θcn},", page2.Text);
Assert.Contains("is~θc={θc1,θc2,...,θcn},", page2.Text);
}
}