Closed conradolandia closed 1 month ago
Name | Link |
---|---|
Latest commit | d4e96d9bb3044cbc9e35473f28915df025696330 |
Latest deploy log | https://app.netlify.com/sites/spyder-svelte-website-preview/deploys/66ea1521b91abe00080490ab |
Deploy Preview | https://deploy-preview-14--spyder-svelte-website-preview.netlify.app |
Preview on mobile | Toggle QR Code...Use your smartphone camera to open QR code link. |
To edit notification comments on pull requests, go to your Netlify site configuration.
This PR replaces a plugin to add support for proper Alt text from markdown sources using mdsvex. The new plugin is
rehype-title-figure
.With this new implementation,
![This is alt text](image.jpg "This is the caption")
will render like<figure><img src="image.jpg" alt="This is alt text" title="This is the caption"/><figcaption>This is the caption</figcaption></figure>
.An image without a caption will not produce a
figure
norfigcaption
, but will produce animg
with an alt attribute:![This is alt text](image.jpg)
will render like<img src="image.jpg" alt="This is alt text" />
.