Skip to content

Commit fe69856

Browse files
committed
ensure we properly default to ‘below’ for EJS template
1 parent 09c29d7 commit fe69856

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/format/html/format-html.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ export async function htmlFormatExtras(
260260
options.figResponsive = format.metadata[kFigResponsive] || false;
261261
}
262262
if (featureDefaults.codeAnnotations) {
263-
options.codeAnnotations = format.metadata[kCodeAnnotations];
263+
options.codeAnnotations = format.metadata[kCodeAnnotations] || "below";
264264
} else {
265265
options.codeAnnotations = format.metadata[kCodeAnnotations] || false;
266266
}

0 commit comments

Comments
 (0)