GithubHelp home page GithubHelp logo

Comments (4)

jdum avatar jdum commented on September 28, 2024

Hi, this is a beautiful bug ;-)
What I see:

Note: It is not an error if the character preceding the element is not a white space character, but it is good practice to use this element only for the second and all following “ “ (U+0020, SPACE) characters in a sequence.
"""
However, the chapter juste before says something different (at 6.1.2 White Space Characters) :
(5)Leading “ “ (U+0020, SPACE) characters at the start of the resulting text and trailing SPACE characters at the end of the resulting text are removed.

And LibreOffice shall implement that rule (5). As a result you dont see your space. And moreover, when inserting a leading space in LO, it is translated into a text:s, thus complying with the 6.1.2 rules, but not exactly with the 6.1.3 definition of text:s

So, I will try to implement that in the same way as LibreOffice (and it seems correct to me that leading/trailing spaces are a special case)

from odfdo.

mlwesoly avatar mlwesoly commented on September 28, 2024

Thank you very much for the comprehensive answer. I will also read a bit more into this, because what i read from your quotes makes me wonder, why did a committee decide that leading space characters should be removed. Trailing ones I can understand. Anyway that is for another day, i thank you for having a look into this topic.

my current workaround looks like this, also splitting the one space at beginning and then adding a Spacer in form of the block length. ....let's just say, its working for me at the moment. But i know it is just a not beautiful solution.

_re_splitter = re.compile(r"(\n|\t|^ |  +)")
_re_space = re.compile(r"^  +$")
_re_space2 = re.compile(r"^ +$")

... lower in _plain_text_splitted

    continue
            if _re_space2.match(bloc):
                # follow ODF standard : n spaces => one space + spacer(n-1)
                # self.append(" ")
                elements.append(Spacer(len(bloc)))
                continue
            if _re_space.match(bloc):

from odfdo.

jdum avatar jdum commented on September 28, 2024

The new version 3.9 should fix the bug

from odfdo.

mlwesoly avatar mlwesoly commented on September 28, 2024

I tried it and until now it works perfectly. Thank you very much!

from odfdo.

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.