Git Product home page Git Product logo

Comments (4)

Ognian avatar Ognian commented on July 16, 2024

One way would be to enter the text in markdown and implement format:markdown ...

from jsonary.

geraintluff avatar geraintluff commented on July 16, 2024

That's tricky, because displaying arbitrary HTML has security problems.

If it's internal data, then you could create a custom renderer, like:

Jsonary.render.register({
    renderHtml: function (data, context) {
        // ideally, this should be sanitizeHtml(data.get());
        return data.get();
    },
    filter: {
        type: "string",
        readOnly: true,
        filter: function (data, schemas) {
            return schemas.containsFormat('html');
        }
    }
});

If you know of a good JavaScript-based HTML sanitisation library, then it would be no problem, and it could be added as one of the extra renderers.

from jsonary.

geraintluff avatar geraintluff commented on July 16, 2024

For "format": "markdown", I wrote this renderer here: https://github.com/jsonary-js/jsonary-site/blob/master/renderers/markdown-hack.js

It doesn't accept any HTML (it uses Jsonary.escapeHTML(...) before passing it to the Markdown parser).

There's also this one, which uses either markdown-js or PageDown, depending on which is available in the environment.

from jsonary.

Ognian avatar Ognian commented on July 16, 2024

Thanks a lot, I'm going now with the markdown solution. At the moment I need only html links so I let the markdown lib generate them and then I'm modifying the tag in an usable way for my app (specifying a target iframe where to go) etc...
I started with PageDown since the editor could be an option, but I'm not sure if marked isn't the better solution... When I'll get a good solution I'll contribute back to jsonary ...

from jsonary.

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.