npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

remark-table-cell-titles

v1.0.1

Published

Remark plugin that adds data-title attributes to table cells for responsive tables

Readme

remark-table-cell-titles

A remark plugin that adds data-title attributes to table cells in Markdown tables. This makes tables more accessible for responsive designs where table headers can be displayed as labels on small screens.

Installation

npm install remark-table-cell-titles

Usage

import { remark } from "remark";
import remarkParse from "remark-parse";
import remarkGfm from "remark-gfm";
import remarkHtml from "remark-html";
import remarkTableCellTitles from "remark-table-cell-titles";

const markdown = `
| Header 1 | Header 2 |
| -------- | -------- |
| Cell 1   | Cell 2   |
| Cell 3   | Cell 4   |
`;

// Basic usage
const result = await remark()
  .use(remarkParse)
  .use(remarkGfm)
  .use(remarkTableCellTitles)
  .use(remarkHtml, { sanitize: false })
  .process(markdown);

console.log(result.toString());
// Output will contain:
// <td data-title="Header 1">Cell 1</td>
// <td data-title="Header 2">Cell 2</td>
// <td data-title="Header 1">Cell 3</td>
// <td data-title="Header 2">Cell 4</td>

Configuration Options

The plugin accepts several configuration options:

remark().use(remarkTableCellTitles, {
  attributeName: "data-title", // Custom attribute name
  skipEmptyHeaders: false, // Skip adding attributes for empty headers
  headerTransform: (node) => toString(node), // Transform header node before using as attribute
});

attributeName

Type: string
Default: 'data-title'

Custom attribute name to use instead of data-title.

remark().use(remarkTableCellTitles, { attributeName: "data-header" });

This will generate: <td data-header="Header 1">Cell 1</td>

skipEmptyHeaders

Type: boolean
Default: false

Skip adding attributes for cells that correspond to empty headers.

remark().use(remarkTableCellTitles, { skipEmptyHeaders: true });

headerTransform

Type: Function
Default: (node) => toString(node)

Transform header node before using it as an attribute value.

remark().use(remarkTableCellTitles, {
  headerTransform: (node) =>
    node.children[0].value.toLowerCase().replace(/\s+/g, "-"),
});

This will generate: <td data-title="header-1">Cell 1</td>

Complex Header Support

The plugin properly handles complex header content including:

  • Formatted text (bold, italic, etc.)
  • Links
  • Other inline elements

For example, with this markdown:

| **Bold Header** | [Link Header](https://example.com) |
| --------------- | ---------------------------------- |
| Cell 1          | Cell 2                             |

The plugin will extract the text content from the complex header elements:

<td data-title="Bold Header">Cell 1</td>
<td data-title="Link Header">Cell 2</td>

CSS Usage Example

This plugin is particularly useful for responsive tables. Here's an example CSS implementation:

@media screen and (max-width: 600px) {
  table {
    border: 0;
  }

  table thead {
    display: none;
  }

  table tr {
    display: block;
    margin-bottom: 0.5em;
    border: 1px solid #ddd;
  }

  table td {
    display: block;
    text-align: right;
    border-bottom: 1px solid #ddd;
    padding-left: 50%;
    position: relative;
  }

  table td:before {
    content: attr(data-title);
    position: absolute;
    left: 6px;
    font-weight: bold;
  }
}

License

MIT