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>
		
			
				
	
	
		
			100 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
			
		
		
	
	
			100 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
package s
 | 
						|
 | 
						|
import (
 | 
						|
	. "github.com/alecthomas/chroma" // nolint
 | 
						|
	"github.com/alecthomas/chroma/lexers/internal"
 | 
						|
)
 | 
						|
 | 
						|
// Smalltalk lexer.
 | 
						|
var Smalltalk = internal.Register(MustNewLexer(
 | 
						|
	&Config{
 | 
						|
		Name:      "Smalltalk",
 | 
						|
		Aliases:   []string{"smalltalk", "squeak", "st"},
 | 
						|
		Filenames: []string{"*.st"},
 | 
						|
		MimeTypes: []string{"text/x-smalltalk"},
 | 
						|
	},
 | 
						|
	Rules{
 | 
						|
		"root": {
 | 
						|
			{`(<)(\w+:)(.*?)(>)`, ByGroups(Text, Keyword, Text, Text), nil},
 | 
						|
			Include("squeak fileout"),
 | 
						|
			Include("whitespaces"),
 | 
						|
			Include("method definition"),
 | 
						|
			{`(\|)([\w\s]*)(\|)`, ByGroups(Operator, NameVariable, Operator), nil},
 | 
						|
			Include("objects"),
 | 
						|
			{`\^|:=|_`, Operator, nil},
 | 
						|
			{`[\]({}.;!]`, Text, nil},
 | 
						|
		},
 | 
						|
		"method definition": {
 | 
						|
			{`([a-zA-Z]+\w*:)(\s*)(\w+)`, ByGroups(NameFunction, Text, NameVariable), nil},
 | 
						|
			{`^(\b[a-zA-Z]+\w*\b)(\s*)$`, ByGroups(NameFunction, Text), nil},
 | 
						|
			{`^([-+*/\\~<>=|&!?,@%]+)(\s*)(\w+)(\s*)$`, ByGroups(NameFunction, Text, NameVariable, Text), nil},
 | 
						|
		},
 | 
						|
		"blockvariables": {
 | 
						|
			Include("whitespaces"),
 | 
						|
			{`(:)(\s*)(\w+)`, ByGroups(Operator, Text, NameVariable), nil},
 | 
						|
			{`\|`, Operator, Pop(1)},
 | 
						|
			Default(Pop(1)),
 | 
						|
		},
 | 
						|
		"literals": {
 | 
						|
			{`'(''|[^'])*'`, LiteralString, Push("afterobject")},
 | 
						|
			{`\$.`, LiteralStringChar, Push("afterobject")},
 | 
						|
			{`#\(`, LiteralStringSymbol, Push("parenth")},
 | 
						|
			{`\)`, Text, Push("afterobject")},
 | 
						|
			{`(\d+r)?-?\d+(\.\d+)?(e-?\d+)?`, LiteralNumber, Push("afterobject")},
 | 
						|
		},
 | 
						|
		"_parenth_helper": {
 | 
						|
			Include("whitespaces"),
 | 
						|
			{`(\d+r)?-?\d+(\.\d+)?(e-?\d+)?`, LiteralNumber, nil},
 | 
						|
			{`[-+*/\\~<>=|&#!?,@%\w:]+`, LiteralStringSymbol, nil},
 | 
						|
			{`'(''|[^'])*'`, LiteralString, nil},
 | 
						|
			{`\$.`, LiteralStringChar, nil},
 | 
						|
			{`#*\(`, LiteralStringSymbol, Push("inner_parenth")},
 | 
						|
		},
 | 
						|
		"parenth": {
 | 
						|
			{`\)`, LiteralStringSymbol, Push("root", "afterobject")},
 | 
						|
			Include("_parenth_helper"),
 | 
						|
		},
 | 
						|
		"inner_parenth": {
 | 
						|
			{`\)`, LiteralStringSymbol, Pop(1)},
 | 
						|
			Include("_parenth_helper"),
 | 
						|
		},
 | 
						|
		"whitespaces": {
 | 
						|
			{`\s+`, Text, nil},
 | 
						|
			{`"(""|[^"])*"`, Comment, nil},
 | 
						|
		},
 | 
						|
		"objects": {
 | 
						|
			{`\[`, Text, Push("blockvariables")},
 | 
						|
			{`\]`, Text, Push("afterobject")},
 | 
						|
			{`\b(self|super|true|false|nil|thisContext)\b`, NameBuiltinPseudo, Push("afterobject")},
 | 
						|
			{`\b[A-Z]\w*(?!:)\b`, NameClass, Push("afterobject")},
 | 
						|
			{`\b[a-z]\w*(?!:)\b`, NameVariable, Push("afterobject")},
 | 
						|
			{`#("(""|[^"])*"|[-+*/\\~<>=|&!?,@%]+|[\w:]+)`, LiteralStringSymbol, Push("afterobject")},
 | 
						|
			Include("literals"),
 | 
						|
		},
 | 
						|
		"afterobject": {
 | 
						|
			{`! !$`, Keyword, Pop(1)},
 | 
						|
			Include("whitespaces"),
 | 
						|
			{`\b(ifTrue:|ifFalse:|whileTrue:|whileFalse:|timesRepeat:)`, NameBuiltin, Pop(1)},
 | 
						|
			{`\b(new\b(?!:))`, NameBuiltin, nil},
 | 
						|
			{`:=|_`, Operator, Pop(1)},
 | 
						|
			{`\b[a-zA-Z]+\w*:`, NameFunction, Pop(1)},
 | 
						|
			{`\b[a-zA-Z]+\w*`, NameFunction, nil},
 | 
						|
			{`\w+:?|[-+*/\\~<>=|&!?,@%]+`, NameFunction, Pop(1)},
 | 
						|
			{`\.`, Punctuation, Pop(1)},
 | 
						|
			{`;`, Punctuation, nil},
 | 
						|
			{`[\])}]`, Text, nil},
 | 
						|
			{`[\[({]`, Text, Pop(1)},
 | 
						|
		},
 | 
						|
		"squeak fileout": {
 | 
						|
			{`^"(""|[^"])*"!`, Keyword, nil},
 | 
						|
			{`^'(''|[^'])*'!`, Keyword, nil},
 | 
						|
			{`^(!)(\w+)( commentStamp: )(.*?)( prior: .*?!\n)(.*?)(!)`, ByGroups(Keyword, NameClass, Keyword, LiteralString, Keyword, Text, Keyword), nil},
 | 
						|
			{`^(!)(\w+(?: class)?)( methodsFor: )('(?:''|[^'])*')(.*?!)`, ByGroups(Keyword, NameClass, Keyword, LiteralString, Keyword), nil},
 | 
						|
			{`^(\w+)( subclass: )(#\w+)(\s+instanceVariableNames: )(.*?)(\s+classVariableNames: )(.*?)(\s+poolDictionaries: )(.*?)(\s+category: )(.*?)(!)`, ByGroups(NameClass, Keyword, LiteralStringSymbol, Keyword, LiteralString, Keyword, LiteralString, Keyword, LiteralString, Keyword, LiteralString, Keyword), nil},
 | 
						|
			{`^(\w+(?: class)?)(\s+instanceVariableNames: )(.*?)(!)`, ByGroups(NameClass, Keyword, LiteralString, Keyword), nil},
 | 
						|
			{`(!\n)(\].*)(! !)$`, ByGroups(Keyword, Text, Keyword), nil},
 | 
						|
			{`! !$`, Keyword, nil},
 | 
						|
		},
 | 
						|
	},
 | 
						|
))
 |