rozerro
rozerro

Reputation: 7156

How to colorize a part of code in a GitHub repository?

How to make code selected on GitHub? For example, there is a part of the code selected with background color.

Upvotes: 1

Views: 76

Answers (1)

Tris
Tris

Reputation: 293

In this URL:

https://github.com/FilledStacks/flutter-tutorials/blob/d92ea35b1a23660d224bf420fece39e785476956/tik_tok_ui/lib/widgets/actions_toolbar.dart#L27-L41

The #L27-L41 is your answer. You can modify this manually to select a large range of lines.

Alternatively, you can click the first line you'd like to highlight, hold down Shift, then click the end of the range of lines you'd like to highlight. The URL in your web browser will be updated to reflect this.

Upvotes: 1

Related Questions