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
Rouge
add support for https://github.com/jneen/rouge
The text was updated successfully, but these errors were encountered:
# -*- coding: utf-8 -*- # module Rouge module Lexers class LSL < RegexLexer title 'LSL' desc 'LSL (https://wiki.secondlife.com/wiki/LSL_Portal)' tag 'lsl' filenames '*.lsl' state :base do rule %r(//.*$), Comment::Single rule %r(/\*), Comment::Multiline, :multiline_comment rule %r("), Str::Double, :escape_dqs end state :multiline_comment do rule %r(\*/), Comment::Multiline, :pop! end state :escape_dqs do mixin :string_escape mixin :dqs end state :string_escape do rule %r(\\([\\"nt])), Str::Escape end state :dqs do rule %r("), Str::Double, :pop! end end end end
Sorry, something went wrong.
buildersbrewery
No branches or pull requests
add support for https://github.com/jneen/rouge
The text was updated successfully, but these errors were encountered: