Giter Site home page Giter Site logo

Comments (5)

IvanUkhov avatar IvanUkhov commented on May 21, 2024 1

In general, it would make sense to have a nonescaping node. Perhaps we don't want to abuse node::Text and instead could introduce node::Blob or something as you suggested.

from svg.

IvanUkhov avatar IvanUkhov commented on May 21, 2024

Can you please show an example of the final content?

from svg.

flxzt avatar flxzt commented on May 21, 2024

Sure, for example:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
    width="100"
    height="100"
    viewBox="0 0 100 100"
    xmlns="http://www.w3.org/2000/svg"
    xmlns:svg="http://www.w3.org/2000/svg">
    <svg
        x="10"
        y="10"
        width="50"
        height="50"
        version="1.1"
        xmlns="http://www.w3.org/2000/svg"
        xmlns:svg="http://www.w3.org/2000/svg">
        <rect
            fill="red"
            stroke="black"
            stroke-width="1"
            width="50"
            height="50"
        />
    </svg>
    <svg
        x="40"
        y="40"
        width="50"
        height="50"
        xmlns="http://www.w3.org/2000/svg"
        xmlns:svg="http://www.w3.org/2000/svg">
        <ellipse
            fill="green"
            stroke="black"
            stroke-width="1"
            cx="25"
            cy="25"
            rx="24"
            ry="24"
        />
    </svg>
</svg>

Think that the svg's containing the Rectangle and Ellipse are coming from the user. Actually, in my app I am inserting Text nodes into Group's as well, so this is not only specific to Svg elements.

Whats the reason behind escaping content when creating Text nodes anyway? Or could there be a separate Content node type that does not escape it

from svg.

IvanUkhov avatar IvanUkhov commented on May 21, 2024

But you cannot append them as usual elements? Or it comes in text form, and you would not want to parse?

from svg.

flxzt avatar flxzt commented on May 21, 2024

Or it comes in text form, and you would not want to parse?

Yes, exactly. It's essentially an arbitrary Svg string which needs to be inserted

from svg.

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.