GithubHelp home page GithubHelp logo

Comments (3)

doeblerh avatar doeblerh commented on June 14, 2024

I should probably add that I already tried to use a phrase replacement rule line

'i.\u202fe. & i.e.\n'

(where the replacemnts file contains no \ charcter but the u202f codepoint itself)
but this does not work either.

from yalafi.

torik42 avatar torik42 commented on June 14, 2024

I don’t think, this is a YaLafi problem. In German, the abbreviation d.\,h. is recognized as correct, while d.h. and d. h. are wrong. According to this document (page 6, link in German) there should be no thin space in English abbreviations.

If you still want to write i.\,e., you may disable the EG_SPACE rule or, even better, define your own rules using a local server.

from yalafi.

torik42 avatar torik42 commented on June 14, 2024

I had a quick look into this again. There is still the point that the replacement rule using the Unicode character does not work, here is why: utils.replace_phrases uses string.split() to split the replacement rule into parts. Thus, the input 'i.\u202fe. & i.e.' is divided into ['i.', 'e.', '&', 'i.e.']. Hence, it results in the same replacements as 'i. e. & i.e.' would. Assuming that nobody uses tabs in the replacement file, one could instead use string.split(' '). In the above example this would result in ['i.\u202fe.', '&', 'i.e.'] which should solve the problem.

@doeblerh: I think your suggestion has an unwanted side effect: The rule i. e. & i.e. would also replace the LaTeX code i.\, e. (there is an extra whitespace between \, and e) to i.e., although it produces a too large spacing.

from yalafi.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.