mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-04 05:18:25 +00:00 
			
		
		
		
	* Server-side syntax hilighting for all code This PR does a few things: * Remove all traces of highlight.js * Use chroma library to provide fast syntax hilighting directly on the server * Provide syntax hilighting for diffs * Re-style both unified and split diffs views * Add custom syntax hilighting styling for both regular and arc-green Fixes #7729 Fixes #10157 Fixes #11825 Fixes #7728 Fixes #3872 Fixes #3682 And perhaps gets closer to #9553 * fix line marker * fix repo search * Fix single line select * properly load settings * npm uninstall highlight.js * review suggestion * code review * forgot to call function * fix test * Apply suggestions from code review suggestions from @silverwind thanks Co-authored-by: silverwind <me@silverwind.io> * code review * copy/paste error * Use const for highlight size limit * Update web_src/less/_repository.less Co-authored-by: Lauris BH <lauris@nix.lv> * update size limit to 1MB and other styling tweaks * fix highlighting for certain diff sections * fix test * add worker back as suggested Co-authored-by: silverwind <me@silverwind.io> Co-authored-by: Lauris BH <lauris@nix.lv>
		
			
				
	
	
		
			136 lines
		
	
	
		
			5.7 KiB
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
			
		
		
	
	
			136 lines
		
	
	
		
			5.7 KiB
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
package r
 | 
						|
 | 
						|
import (
 | 
						|
	. "github.com/alecthomas/chroma" // nolint
 | 
						|
	"github.com/alecthomas/chroma/lexers/internal"
 | 
						|
)
 | 
						|
 | 
						|
// Rust lexer.
 | 
						|
var Rust = internal.Register(MustNewLexer(
 | 
						|
	&Config{
 | 
						|
		Name:      "Rust",
 | 
						|
		Aliases:   []string{"rust"},
 | 
						|
		Filenames: []string{"*.rs", "*.rs.in"},
 | 
						|
		MimeTypes: []string{"text/rust"},
 | 
						|
		EnsureNL:  true,
 | 
						|
	},
 | 
						|
	Rules{
 | 
						|
		"root": {
 | 
						|
			{`#![^[\r\n].*$`, CommentPreproc, nil},
 | 
						|
			Default(Push("base")),
 | 
						|
		},
 | 
						|
		"base": {
 | 
						|
			{`\n`, TextWhitespace, nil},
 | 
						|
			{`\s+`, TextWhitespace, nil},
 | 
						|
			{`//!.*?\n`, LiteralStringDoc, nil},
 | 
						|
			{`///(\n|[^/].*?\n)`, LiteralStringDoc, nil},
 | 
						|
			{`//(.*?)\n`, CommentSingle, nil},
 | 
						|
			{`/\*\*(\n|[^/*])`, LiteralStringDoc, Push("doccomment")},
 | 
						|
			{`/\*!`, LiteralStringDoc, Push("doccomment")},
 | 
						|
			{`/\*`, CommentMultiline, Push("comment")},
 | 
						|
			{`r#*"(?:\\.|[^\\\r\n;])*"#*`, LiteralString, nil},
 | 
						|
			{`"(?:\\.|[^\\\r\n"])*"`, LiteralString, nil},
 | 
						|
			{`\$([a-zA-Z_]\w*|\(,?|\),?|,?)`, CommentPreproc, nil},
 | 
						|
			{Words(``, `\b`, `as`, `box`, `const`, `crate`, `else`, `extern`, `for`, `if`, `impl`, `in`, `loop`, `match`, `move`, `mut`, `pub`, `ref`, `return`, `static`, `super`, `trait`, `unsafe`, `use`, `where`, `while`), Keyword, nil},
 | 
						|
			{Words(``, `\b`, `abstract`, `alignof`, `become`, `do`, `final`, `macro`, `offsetof`, `override`, `priv`, `proc`, `pure`, `sizeof`, `typeof`, `unsized`, `virtual`, `yield`), KeywordReserved, nil},
 | 
						|
			{`(true|false)\b`, KeywordConstant, nil},
 | 
						|
			{`mod\b`, Keyword, Push("modname")},
 | 
						|
			{`let\b`, KeywordDeclaration, nil},
 | 
						|
			{`fn\b`, Keyword, Push("funcname")},
 | 
						|
			{`(struct|enum|type|union)\b`, Keyword, Push("typename")},
 | 
						|
			{`(default)(\s+)(type|fn)\b`, ByGroups(Keyword, Text, Keyword), nil},
 | 
						|
			{Words(``, `\b`, `u8`, `u16`, `u32`, `u64`, `i8`, `i16`, `i32`, `i64`, `usize`, `isize`, `f32`, `f64`, `str`, `bool`), KeywordType, nil},
 | 
						|
			{`self\b`, NameBuiltinPseudo, nil},
 | 
						|
			{Words(``, `\b`, `Copy`, `Send`, `Sized`, `Sync`, `Drop`, `Fn`, `FnMut`, `FnOnce`, `Box`, `ToOwned`, `Clone`, `PartialEq`, `PartialOrd`, `Eq`, `Ord`, `AsRef`, `AsMut`, `Into`, `From`, `Default`, `Iterator`, `Extend`, `IntoIterator`, `DoubleEndedIterator`, `ExactSizeIterator`, `Option`, `Some`, `None`, `Result`, `Ok`, `Err`, `SliceConcatExt`, `String`, `ToString`, `Vec`), NameBuiltin, nil},
 | 
						|
			{`::\b`, Text, nil},
 | 
						|
			{`(?::|->)`, Text, Push("typename")},
 | 
						|
			{`(break|continue)(\s*)(\'[A-Za-z_]\w*)?`, ByGroups(Keyword, TextWhitespace, NameLabel), nil},
 | 
						|
			{`'(\\['"\\nrt]|\\x[0-7][0-9a-fA-F]|\\0|\\u\{[0-9a-fA-F]{1,6}\}|.)'`, LiteralStringChar, nil},
 | 
						|
			{`b'(\\['"\\nrt]|\\x[0-9a-fA-F]{2}|\\0|\\u\{[0-9a-fA-F]{1,6}\}|.)'`, LiteralStringChar, nil},
 | 
						|
			{`0b[01_]+`, LiteralNumberBin, Push("number_lit")},
 | 
						|
			{`0o[0-7_]+`, LiteralNumberOct, Push("number_lit")},
 | 
						|
			{`0[xX][0-9a-fA-F_]+`, LiteralNumberHex, Push("number_lit")},
 | 
						|
			{`[0-9][0-9_]*(\.[0-9_]+[eE][+\-]?[0-9_]+|\.[0-9_]*(?!\.)|[eE][+\-]?[0-9_]+)`, LiteralNumberFloat, Push("number_lit")},
 | 
						|
			{`[0-9][0-9_]*`, LiteralNumberInteger, Push("number_lit")},
 | 
						|
			{`b"`, LiteralString, Push("bytestring")},
 | 
						|
			{`b?r(#*)".*?"\1`, LiteralString, nil},
 | 
						|
			{`'static`, NameBuiltin, nil},
 | 
						|
			{`'[a-zA-Z_]\w*`, NameAttribute, nil},
 | 
						|
			{`[{}()\[\],.;]`, Punctuation, nil},
 | 
						|
			{`[+\-*/%&|<>^!~@=:?]`, Operator, nil},
 | 
						|
			{`(r#)?[a-zA-Z_]\w*`, Name, nil},
 | 
						|
			{`#!?\[`, CommentPreproc, Push("attribute[")},
 | 
						|
			{`([A-Za-z_]\w*)(!)(\s*)([A-Za-z_]\w*)?(\s*)(\{)`, ByGroups(CommentPreproc, Punctuation, TextWhitespace, Name, TextWhitespace, Punctuation), Push("macro{")},
 | 
						|
			{`([A-Za-z_]\w*)(!)(\s*)([A-Za-z_]\w*)?(\()`, ByGroups(CommentPreproc, Punctuation, TextWhitespace, Name, Punctuation), Push("macro(")},
 | 
						|
		},
 | 
						|
		"comment": {
 | 
						|
			{`[^*/]+`, CommentMultiline, nil},
 | 
						|
			{`/\*`, CommentMultiline, Push()},
 | 
						|
			{`\*/`, CommentMultiline, Pop(1)},
 | 
						|
			{`[*/]`, CommentMultiline, nil},
 | 
						|
		},
 | 
						|
		"doccomment": {
 | 
						|
			{`[^*/]+`, LiteralStringDoc, nil},
 | 
						|
			{`/\*`, LiteralStringDoc, Push()},
 | 
						|
			{`\*/`, LiteralStringDoc, Pop(1)},
 | 
						|
			{`[*/]`, LiteralStringDoc, nil},
 | 
						|
		},
 | 
						|
		"modname": {
 | 
						|
			{`\s+`, Text, nil},
 | 
						|
			{`[a-zA-Z_]\w*`, NameNamespace, Pop(1)},
 | 
						|
			Default(Pop(1)),
 | 
						|
		},
 | 
						|
		"funcname": {
 | 
						|
			{`\s+`, Text, nil},
 | 
						|
			{`[a-zA-Z_]\w*`, NameFunction, Pop(1)},
 | 
						|
			Default(Pop(1)),
 | 
						|
		},
 | 
						|
		"typename": {
 | 
						|
			{`\s+`, Text, nil},
 | 
						|
			{`&`, KeywordPseudo, nil},
 | 
						|
			{Words(``, `\b`, `Copy`, `Send`, `Sized`, `Sync`, `Drop`, `Fn`, `FnMut`, `FnOnce`, `Box`, `ToOwned`, `Clone`, `PartialEq`, `PartialOrd`, `Eq`, `Ord`, `AsRef`, `AsMut`, `Into`, `From`, `Default`, `Iterator`, `Extend`, `IntoIterator`, `DoubleEndedIterator`, `ExactSizeIterator`, `Option`, `Some`, `None`, `Result`, `Ok`, `Err`, `SliceConcatExt`, `String`, `ToString`, `Vec`), NameBuiltin, nil},
 | 
						|
			{Words(``, `\b`, `u8`, `u16`, `u32`, `u64`, `i8`, `i16`, `i32`, `i64`, `usize`, `isize`, `f32`, `f64`, `str`, `bool`), KeywordType, nil},
 | 
						|
			{`[a-zA-Z_]\w*`, NameClass, Pop(1)},
 | 
						|
			Default(Pop(1)),
 | 
						|
		},
 | 
						|
		"number_lit": {
 | 
						|
			{`[ui](8|16|32|64|size)`, Keyword, Pop(1)},
 | 
						|
			{`f(32|64)`, Keyword, Pop(1)},
 | 
						|
			Default(Pop(1)),
 | 
						|
		},
 | 
						|
		"string": {
 | 
						|
			{`"`, LiteralString, Pop(1)},
 | 
						|
			{`\\['"\\nrt]|\\x[0-7][0-9a-fA-F]|\\0|\\u\{[0-9a-fA-F]{1,6}\}`, LiteralStringEscape, nil},
 | 
						|
			{`[^\\"]+`, LiteralString, nil},
 | 
						|
			{`\\`, LiteralString, nil},
 | 
						|
		},
 | 
						|
		"bytestring": {
 | 
						|
			{`\\x[89a-fA-F][0-9a-fA-F]`, LiteralStringEscape, nil},
 | 
						|
			Include("string"),
 | 
						|
		},
 | 
						|
		"macro{": {
 | 
						|
			{`\{`, Operator, Push()},
 | 
						|
			{`\}`, Operator, Pop(1)},
 | 
						|
		},
 | 
						|
		"macro(": {
 | 
						|
			{`\(`, Operator, Push()},
 | 
						|
			{`\)`, Operator, Pop(1)},
 | 
						|
		},
 | 
						|
		"attribute_common": {
 | 
						|
			{`"`, LiteralString, Push("string")},
 | 
						|
			{`\[`, CommentPreproc, Push("attribute[")},
 | 
						|
			{`\(`, CommentPreproc, Push("attribute(")},
 | 
						|
		},
 | 
						|
		"attribute[": {
 | 
						|
			Include("attribute_common"),
 | 
						|
			{`\];?`, CommentPreproc, Pop(1)},
 | 
						|
			{`[^"\]]+`, CommentPreproc, nil},
 | 
						|
		},
 | 
						|
		"attribute(": {
 | 
						|
			Include("attribute_common"),
 | 
						|
			{`\);?`, CommentPreproc, Pop(1)},
 | 
						|
			{`[^")]+`, CommentPreproc, nil},
 | 
						|
		},
 | 
						|
	},
 | 
						|
))
 |