Skip to content

Commit a4f07db

Browse files
committed
feat(nx-dev): show alt text as label below markdown images
1 parent 999dcfb commit a4f07db

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

nx-dev/nx-dev/styles/main.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ iframe[src*='youtube'] {
5353
aspect-ratio: 16 / 9;
5454
}
5555
.prose iframe,
56-
.prose img {
56+
.prose img:not(figure img) {
5757
display: block;
5858
margin: 2rem auto;
5959
}

nx-dev/ui-markdoc/src/lib/nodes/image.schema.ts

+10-6
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
import { transformImagePath } from './helpers/transform-image-path';
99

1010
export const getImageSchema = (documentFilePath: string): Schema => ({
11-
render: 'img',
11+
render: 'figure',
1212
attributes: {
1313
src: { type: 'String', required: true },
1414
alt: { type: 'String', required: true },
@@ -17,11 +17,15 @@ export const getImageSchema = (documentFilePath: string): Schema => ({
1717
const attributes = node.transformAttributes(config);
1818
const children = node.transformChildren(config);
1919
const src = transformImagePath(documentFilePath)(attributes['src']);
20+
const alt = attributes['alt'];
2021

21-
return new Tag(
22-
this.render,
23-
{ ...attributes, src, loading: 'lazy' },
24-
children
25-
);
22+
return new Tag(this.render, { className: 'not-prose my-8 text-center' }, [
23+
new Tag('img', { src, alt, loading: 'lazy', className: 'mx-auto !my-0' }),
24+
new Tag(
25+
'figcaption',
26+
{ className: 'mt-2 text-sm text-slate-600 dark:text-slate-400' },
27+
[alt]
28+
),
29+
]);
2630
},
2731
});

0 commit comments

Comments
 (0)