1.5.0 • Published 8 years ago

htfloml v1.5.0

Weekly downloads
4
License
MIT
Repository
github
Last release
8 years ago

HTfloMl

An HTML formatter made for my buddy tflo.

  • Opening tag placement
    • On one line if shorter than the character limit.
    • Otherwise, place each attribute such that each is on one line, further indented by two levels.
  • Closing tag placement
    • Immediately after the opening tag if an element is empty and it would not go passed the character limit.
    • Otherwise, on a new line.
  • Comment tag placement
    • On one line if shorter than the character limit
    • Otherwise place the comment such that paragraphs (delimited by empty lines) wrap at the character limit.
  • Text node placement
    • On one line if shorter than the character limit.
    • Otherwise place the text such that paragraphs (delimited by empty lines) wrap at the character limit.
  • Leaf elements placement
    • On one line if shorter than the character limit.

HTfloMl uses a default character limit of 100 and an indent size of 2 spaces. Opening tags increment the indent level and closing tags decrement the indent level.

Installation

You need node.js and npm. You probably install this globally.

Npm way

npm install -g HTfloMl

Manual way

git clone https://github.com/mrmeku/HTfloMl
cd HTfloMl
npm install # Local dependencies if you want to hack
npm install -g # Install globally

Usage from command line

Issue the command HTfloMl with the -f flag to specify the path of an HTML file to format.

Optional line parameters:

  • -w - The character limit / wrapping column. Defaults to 100.
  • -i - The indent size. Defaults to 2.

License

(MIT License)

Copyright (c) 2016 Daniel Muller

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

1.5.0

8 years ago

1.4.1

8 years ago

1.4.0

8 years ago

1.3.2

8 years ago

1.3.1

8 years ago

1.3.0

8 years ago

1.2.5

8 years ago

1.2.4

8 years ago

1.2.3

8 years ago

1.2.2

8 years ago

1.2.1

8 years ago

1.2.0

8 years ago

1.1.4

8 years ago

1.1.3

8 years ago

1.1.2

8 years ago

1.1.1

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago