You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Highlight a specific line or range of lines in a code block component using the line highlighting syntax.
After the opening of a code block component, add a space and then start your line highlighting configuration with a # character. For instance, to highlight the first line, use #1.
```java #3-4
public void hello() {
System.out.println("NOT highlighted");
System.out.println("This line is highlighted!");
System.out.println("This line is highlighted!");
System.out.println("NOT highlighted");
}
```
The text was updated successfully, but these errors were encountered:
Inspired by: https://retype.com/components/code-block/#line-highlighting
Highlight a specific line or range of lines in a code block component using the line highlighting syntax.
After the opening of a code block component, add a space and then start your line highlighting configuration with a # character. For instance, to highlight the first line, use #1.
The text was updated successfully, but these errors were encountered: