1.0.0 • Published 4 months ago

rehype-figure-title v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
4 months ago

rehype-figure-title

This is a simple rehype plugin to transform images into figures while using the title (not the alt text) as a caption. It draws heavily on rehype-figure

Install

npm install rehype-figure-title

What it does

This plugin will transform all your images into <figure> tags. So...

![Alt Text](./img.jpg)

...becomes...

<figure class="rehype-figure-title">
  <img src="./img.jpg" alt="A figure" />
</figure>

All well and good. But what if you want captions? It's poor practice to just use alt tags—those should be descriptions of the image for people who can't see it. But there's another standard way to associate text with an image in markdown: the title. Titles are relatively useless on images (they provide a browser-based tooltip that appears fitfully on hover, also gets read out by some screen readers, and is basically useful only for XKCD). So this hijacks the title field:

![Alt text](./img.jpg "The caption")

...becomes...

<figure class="rehype-figure-title">
  <img src="./img.jpg" alt="A figure" />
  <figcaption>The caption</figcaption>
</figure>

That's pretty much it.

How to use it

Insert it into your toolchain like any other rehype plugin:

import rehypeFigureTitle from 'rehype-figure-title';

function compile(markdownIn) {
  return unified()
    .use(remark)
    .use(remark2rehype)
    .use(rehypeFigureTitle, { className: /* optional class name for figures */ ""})
    .process(...);
}