Skip to content

akicho8/html_formatter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HTML自動整形ライブラリ

インデントがあやふやなHTMLを、

$ cat test.html
<html><head><title>hello</title></head><body>world</body></html>

インデント付きに変換する。

$ html_formatter test.html
<html>
  <head>
    <title>hello</title>
  </head>
  <body>
    world
  </body>
</html>

ライブラリとして使う例

require "html_formatter"
puts HtmlFormatter.parse("<html><head><title>hello</title></head><body>world</body></html>")
# >> <html>
# >>   <head>
# >>     <title>hello</title>
# >>   </head>
# >>   <body>
# >>     world
# >>   </body>
# >> </html>

オリジナル

About

HTML自動整形ライブラリ

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages