nicojensen.de/vendor/bundle/gems/rouge-3.3.0/lib/rouge/lexers/tsx.rb

21 lines
303 B
Ruby
Raw Normal View History

2019-03-12 13:49:49 +01:00
# -*- coding: utf-8 -*- #
# frozen_string_literal: true
module Rouge
module Lexers
load_lexer 'jsx.rb'
load_lexer 'typescript/common.rb'
class TSX < JSX
include TypescriptCommon
title 'TypeScript'
desc 'tsx'
tag 'tsx'
filenames '*.tsx'
end
end
end