Code Monkey home page Code Monkey logo

docs-soap's Introduction

docs-soap Build Status npm version codecov

docs-soap is a small, simple library that can be used to transform clipboard contents from Google Docs into readable HTML. This library was born from the need to parse clipboard content from Google Docs into a DraftJS Rich Text Editor and thus certain W3C HTML requirements aren't necessarily maintained. For example, while W3C requires unordered lists to be surrounded by <ul> tags, most HTML conversion engines will handle the unwrapped list items, so that standard is ignored.

This project was developed for use in a client-side project. To use in a Node environment, your project will also require jsdom.

Exported API

export default docsSoap(html: string) -> string;
export {
  docsSoap(html: string) -> string,
  parseHTML(html: string) -> HTMLElement
};

Testing

Tests are written in Mocha, using expect for assertions. npm run test will run all tests in the test/ directory, allowing you to test the entire library's functionality at once. All contributions to the repository are expected to contain accompanying tests.

Usage

npm install --save docs-soap
import docsSoap from 'docs-soap';
const html = '<body><b><span style="font-weight:700">bold text</span><span style="font-style:italic">some italic text</span></b></body>';
const clean = docsSoap(html);
console.log(clean); /* "<body><strong>some bold text</strong><i>some italic text</i></body>" */

docs-soap's People

Contributors

aem avatar

Watchers

Vít Krchov avatar Alexandr Marinko avatar Tomas Ruzicka avatar Daniel Hejl avatar Michal Krejčí avatar James Cloos avatar Matej Lauko avatar Adrian Toman avatar  avatar Mario Kamburov avatar Pavel Šuraba avatar Tomáš Prchal avatar Hubert Palan avatar Jan Omáčka avatar Jakub Beneš avatar Maurice Kleine avatar Veronička avatar Martin Rosenberg avatar Petr Pluhař avatar Tomas Fedor avatar  avatar

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.