We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Name of the lexer make
Code sample
build: clean ## build the package python -m build
https://rouge.jneen.net/v4.3.0/make/YnVpbGQ6IGNsZWFuICMgYnVpbGQgdGhlIHBhY2thZ2UKCXB5dGhvbiAtbSBidWlsZAo
Additional context In the make.rb lexer, the Comment rule in the state :block_header block should be greedy
make.rb
Comment
state :block_header
--- lib/rouge/lexers/make.rb 2024-06-16 12:56:19.968821924 +0200 +++ lib/rouge/lexers/make.fixed.rb 2024-06-16 12:56:32.721847441 +0200 @@ -81,7 +81,7 @@ state :block_header do rule %r/[^,\\\n#]+/, Name::Function rule %r/,/, Punctuation - rule %r/#.*?/, Comment + rule %r/#.*/, Comment rule %r/\\\n/, Text rule %r/\\./, Text rule %r/\n/ do
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Name of the lexer
make
Code sample
https://rouge.jneen.net/v4.3.0/make/YnVpbGQ6IGNsZWFuICMgYnVpbGQgdGhlIHBhY2thZ2UKCXB5dGhvbiAtbSBidWlsZAo
Additional context
In the
make.rb
lexer, theComment
rule in thestate :block_header
block should be greedyThe text was updated successfully, but these errors were encountered: