Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Syntax Tree support for ERB

License

NotificationsYou must be signed in to change notification settings

spect88/syntax_tree-erb

 
 

Repository files navigation

Build Status

Syntax Tree support for ERB.

Currently handles

  • ERB
    • Tags with and without output
    • Tags inside strings
    • if,elsif,else andunless statements
    • blocks
    • comments
    • Formatting of the ruby-code is done bysyntax_tree
  • HTML
    • Tags with attributes
    • Tags with and without closing tags
    • Comments
  • Vue
    • Attributes, events and slots using:,@ and# respectively
  • Text output

Unhandled cases

  • Please add to this pinned issue (davidwessman#28) or create a separate issue if you encounter formatting or parsing errors.

Installation

Add this line to your application's Gemfile:

gem"w_syntax_tree-erb","~> 0.11",require:false

I added thew_ prefix to avoid conflicts if there will ever be an officialsyntax_tree-erb gem.

Usage

Parsing

bundleexec stree ast --plugins=erb"./**/*.html.erb"

Format

bundleexec stree write --plugins=erb"./**/*.html.erb"

In code

require"syntax_tree/erb"ppSyntaxTree::ERB.parse(source)# print out the ASTputsSyntaxTree::ERB.format(source)# format the AST

List all parsing errors

In order to get a list of all parsing errors (which needs to be fixed before the formatting works), this script can be used:

#!/bin/rubyrequire"syntax_tree/erb"failures=[]Dir.glob("./app/**/*.html.erb").eachdo |file|puts("Processing#{file}")beginsource=SyntaxTree::ERB.read(file)SyntaxTree::ERB.parse(source)SyntaxTree::ERB.format(source)rescue=>exceptionfailures <<{file:file,message:exception.message}endendputsfailures

Development

Installhusky:

npm i -g husky

Setup linting:

npm run prepare

Install dependencies and run tests:

bundlebundleexec rake

Contributing

Bug reports and pull requests are welcome on GitHub athttps://github.com/davidwessman/syntax_tree-erb.

License

The gem is available as open source under the terms of theMIT License.

About

Syntax Tree support for ERB

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Ruby90.8%
  • HTML9.1%
  • Shell0.1%

[8]ページ先頭

©2009-2025 Movatter.jp