Skip to content

0.5.1 Evaluation Update Quickfix

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 05 May 16:07
· 3 commits to master since this release
69fb790

Changes from v0.5.0 (Recently merged first)

馃殌 Features

Provide workaround for #192 (#193) @Happypig375

So that

class RussianBreakingEngine : Typography.TextBreak.EngBreakingEngine {
  public override bool CanHandle(char c) => c is >= '\u0400' and <= '\u052f'; // Unicode Cyrillic and Cyrillic Supplement
}
CSharpMath.Rendering.Text.TextLaTeXParser.AdditionalBreakingEngines.Add(new RussianBreakingEngine());

can be used for #192 while awaiting Typography support.

Contributors

@Happypig375