npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@smartface/html-to-text

v1.2.0

Published

html to attributedTexts

Downloads

370

Readme

Twitter: @Smartface_io License: MIT npm version Build Status

html-to-text

You can convert html string to attributed strings for your textview component with this module

Installation

npm i --save @smartface/html-to-text

Usage & Example

    const TextView = require('sf-core/ui/textview');
    const AttributedString = require("sf-core/ui/attributedstring");
    const createAttributedStrings = require("@smartface/html-to-text");
    const propFactory = require("@smartface/contx/lib/smartface/sfCorePropFactory").default;
    
    var textView = new TextView();
    var htmlSource = "<span style=\"font-size: 24px; color: rgb(0, 0, 0); text-decoration-color: rgb(0, 0, 0);\"><span style=\"font-family: Nunito-LightItalic; font-size: 24px; background-color: transparent; color: rgb(0, 0, 0); text-decoration-color: rgb(0, 0, 0);\">Your </span><font face=\"ios-Default-Bold\" style=\"font-size: 24px; font-family: ios-Default-Regular; background-color: transparent; color: rgb(0, 0, 0); text-decoration-color: rgb(0, 0, 0);\">attributed </font><span style=\"text-decoration-line: underline; color: rgb(139, 87, 42); font-size: 24px; font-family: ios-Default-Regular; background-color: transparent; text-decoration-color: rgb(0, 0, 0);\">Stri<span style=\"color: rgb(139, 87, 42); text-decoration-line: underline ; text-decoration-color: rgb(0, 0, 0); font-size: 24px; font-family: ios-Default-Regular; background-color: transparent;\">ngs</span></span></span><div><span style=\"font-size: 16px; font-family: ios-Default-Regular; text-decoration-color: rgb(0, 0, 0);\"><span style=\"text-decoration-line: underline; font-size: 16px; font-family: ios-Default-Regular; text-decoration-color: rgb(0, 0, 0);\"><span style=\"text-decoration-line: underline; text-decoration-color: rgb(0, 0, 0); font-size: 24px; font-family: ios-Default-Regular; background-color: rgb(189, 16, 224);\">second</span></span></span></div><div><span style=\"font-size: 16px; font-family: ios-Default-Regular; text-decoration-color: rgb(0, 0, 0);\"><span style=\"text-decoration-line: underline; font-size: 16px; font-family: ios-Default-Regular; text-decoration-color: rgb(0, 0, 0);\"><span style=\"text-decoration-line: underline; text-decoration-color: rgb(0, 0, 0); font-size: 16px; font-family: ios-Default-Regular; background-color: rgb(189, 16, 224); color: rgb(248, 231, 28);\">Third</span></span></span></div>";
    var attributedStrings = createAttributedStrings(htmlSource);
    textView.attributedText = attributedStrings.map(s => new AttributedString(propFactory(s)));

Limitations & Rules

  1. If you want to write newline character, you can use these tags <br>, <div> or use "\n".

    • "attributed <br> string"
    • "attributed <div> string</div>"
    • "attributed \n string"
  2. You can use following html tags

    • br → newline
    • div → newline and general tag for styling
    • span → general tag for styling
    • font → has attribute as color(color), size(font-size) and face(font-family)
    • b → bold style
    • u → underline style
    • i → italic style
    • a → has attribute href for link.
    • s → line-through
    • strike → line-through
  3. You can only use following css styles

    • font.family-style → font-family"font-family: Nunito-ExtraBold;"
    • font.italic → font-style"font-style: italic;"
    • font.size → font-size"font-size: 24px;" (24pt, 24dp)
    • font.bold → font-weight"font-weight: bold;"
    • foregroundColor → color"color: rgb(127, 125, 127);"
    • backgroundColor → background-color"background-color: rgb(255, 125, 127);"
    • underline → text-decoration-line"text-decoration-line: underline;"
    • strikethrough → text-decoration-line"text-decoration-line: line-through;"
    • link → href"click <a href=\"https://smartface.io\"> here </a> "
    • ios.underlineColor → text-decoration-color"text-decoration-color: rgba(255, 125, 128);"
    • ios.strikethroughColor → text-decoration-color"text-decoration-color: rgba(24, 126, 168);"
  4. ⚠️ If you give font-family style, this style can overwrite font-weight and font-style.

    • font-family: Nunito-ExtraLightItalic; → this overwrite font-weight as normal.