Code Monkey home page Code Monkey logo

Comments (2)

smalluban avatar smalluban commented on May 14, 2024

In the documentation of the template engine, you can find a section about values. Because of different reasons expression inside of the element resolves to textContent. If it is the only one expression inside of the element, element.textContent = ... is used, or if it is a concatenation of expression, the engine creates text nodes. Although, you can pass HTML by using innerHTML property of the element, like this:

// Use it with caution, it might open XSS attack
html`<div innerHTML="${htmlCode}"></div>`;

In your example, instead of passing value inside of the <article> element, you should use it when your data resolve in extract function:

function extract(query, content, metadata) {
    let positions = Object.values(metadata).flatMap((term) => Object.values(term).flatMap(t => t.position));
    const html = positions
        .map(([start, len]) => `[…] ${content.substring(start - 50, start + len + 50)} […]`)
        .map(fragment => fragment.replace(new RegExp(`(${query})`, 'i'), `<mark>$1</mark>`));

    return html`<article innerHTML="${html.join('')}"></article`;
}

Because your data is async, you can't pass it directly in your main template. The difference is that <article> element will be rendered when the component receives data, but this is the only way to pass raw html to elements. Still, please be careful, it might open XSS attack.

from hybrids.

docteurklein avatar docteurklein commented on May 14, 2024

amazing! thanks. I thought I went all over the docs but seems like I missed that part about values! 🤦‍♂️

from hybrids.

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.