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

posthtml-beautify

v0.7.0

Published

A posthtml plugin to beautify you html files

Downloads

14,098

Readme

posthtml-beautify

A posthtml plugin to beautify you html files

Travis Build Statusnodenpm versionDependency StatusXO code styleCoveralls status

npm downloadsnpmPackage Quality

Why?

Format your html and inline css markup according to the HTML5 syntax Style Guide, Code Guide. Full list of supported options:

  • [x] Transform lower case element names
  • [x] Transform lower case attribute names
  • [x] Only double quotes
  • [x] Close all html elements
  • [x] Removing trailing slash in self-closing
  • [x] Removes spaces at the equal sign
  • [x] Add blank lines to separate large or logical code blocks
  • [x] Add 2 spaces of indentation. Do not use TAB.
  • [x] Add language attribute
  • [ ] Add character encoding
  • [x] Attribute order
  • [x] Boolean attributes
  • [ ] Creates file from the inline styles
  • [ ] Create scoped class name (use css-modules) instead inline styles
  • [ ] validate elements and attributes name
  • [x] parses Internet Explorer Conditional Comments (not support Downlevel-revealed and valid version, htmlparse2 invalid parses)

Install

npm i -S posthtml posthtml-beautify

Note: This project is compatible with node v10+

Usage

import {readFileSync, writeFileSync} from 'fs';
import posthtml from 'posthtml';
import beautify from 'posthtml-beautify';

const html = readFileSync('input.html', 'utf8');

posthtml()
  .use(beautify({rules: {indent: 4}}))
  .process(html)
  .then(result => {
    writeFileSync('output.html', result.html);
  });

Returns html-formatted according to rules based on the use HTML5 syntax Style Guide, Code Guide with custom settings indent: 4

Example

Options

rules

Type: Object
Default:

  • Indent
    Type: Number|String(only tab)
    Default: 2
    Description: A numeric value indicates specifies the number of spaces. The string value only tab

  • blankLines
    Type: String|Boolean(only false)
    Default: '\n'
    Description: Add or remove blank lines to separate large or logical code blocks

  • eol (end of line)
    Type: String
    Default: '\n'
    Description: As value is a string symbol which is added to the end of the row

  • eof (end of file)
    Type: String|Boolean
    Default: '\n'
    Description: As value is a string symbol which is added to the end of the file and will not adds if you specify a boolean value of false

  • maxlen
    Type: Number
    Default: '80'
    Description: checks for the max length of the content, indents the whole content to a new line

  • sortAttr
    Type: Boolean
    Default: false
    Description: Sort the order of attributes in elements

  • lang
    Type: String | Boolean(only false)
    Default: false
    Description: Add a lang attribute in elements, eg: { lang: 'fr' }

  • commentFormat
    Type: Boolean
    Default: true
    Description: Formats the comments. It does the following

    • If there are multi line comments then there would be leading and trailing newline like this

      // Input
      
      <!-- multiline 
      comments-->
      
      // Output
      
      <!-- 
      multiline 
      comments
      -->
    • If there is a single line comment, it would make it to a single line with the comment starting and ending notation in same line

      Input

      <!-- 
        singleline comments
      -->

      Output

      <!-- singleline comments -->

mini

Type: Object
Default:

  • removeAttribute
    Type: String|Boolean
    Default: false
    Description: Removes attributes that do not matter. The string value only empty

jsBeautifyOptions

Type: Object
Default: All options as per package js-beautify except, indent_level because calculated and set according to context

Related