Coder Social home page Coder Social logo

Comments (3)

fmcarvalho avatar fmcarvalho commented on August 25, 2024

Well, it seems the way we are providing the setIndentation for HtmView is not correct. The way HtmlDoc and HtmView work are completely different. Indentation in HtmlDoc is made though the oldest newlineAndIndent():

public final void newlineAndIndent(){

Whereas HtmView is always built with indentation set to true, and later on render we decide wether we want to remove it. The bug is on the following lines from HtmlContinuationSyncStatic class:

String block = v.isIndented
    ? staticHtmlBlock
    : stream(staticHtmlBlock.split(lineSeparator())).map(String::trim).collect(joining());

We are wrongly removing all line separators. To fix that we have to remove this code. Also we have to change the way we were building an HtmlView. Basically, whenever we call setIndent(...)we have to run the preprocessing(...) from the scratch with the correct indentation flag. And to do it we need to keep the HtmTemplate function associated with the HtmlView.

Is not very complicated and I think it has no impact on performance because all that will be made to run on preprocessing. Moreover I never liked that if/else (i.e ternary) on HtmlContinuationSyncStatic.

However this refactoring includes a couple of steps and I need to review all this again. I hope to dedicate some time to it at the end of this week.

Thank you,
Miguel

from htmlflow.

shimikano avatar shimikano commented on August 25, 2024

Thank you, Miguel, for your efforts 🙏

from htmlflow.

fmcarvalho avatar fmcarvalho commented on August 25, 2024

Solved on new release 4.2

from htmlflow.

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.