File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -141,6 +141,11 @@ defaults:
141
141
margin-left: unset;
142
142
width: 100%;
143
143
}
144
+ #code-annotation-line-highlight-gutter,
145
+ .code-annotation-gutter-bg,
146
+ .code-annotation-gutter {
147
+ all: unset;
148
+ }
144
149
145
150
// List Groups
146
151
.list-group-item-action {
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ subtitle: "Quarto Extension"
4
4
author : " Mickaël Canouil"
5
5
date : today
6
6
highlight-style : github
7
+ code-annotations : select
7
8
format :
8
9
html :
9
10
output-file : index
@@ -96,13 +97,15 @@ def fibonacci(n):
96
97
for i in range (2 , n):
97
98
sequence.append(sequence[i- 1 ] + sequence[i- 2 ])
98
99
99
- return sequence
100
+ return sequence # <1>
100
101
101
102
# Example usage
102
103
fib_numbers = fibonacci(10 )
103
104
print (f " First 10 Fibonacci numbers: { fib_numbers} " )
104
105
```
105
106
107
+ 1 . This comment highlights the return statement in the code above.
108
+
106
109
## Quotes and Callouts
107
110
108
111
### Blockquotes
You can’t perform that action at this time.
0 commit comments