Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

@md-plugins/md-plugin-table

Package Overview
Dependencies
Maintainers
0
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@md-plugins/md-plugin-table

A markdown-it plugin for handling tables with custom tag and styles.

latest
Source
npmnpm
Version
0.1.0-alpha.29
Version published
Maintainers
0
Created
Source

@md-plugins/md-plugin-table

A Markdown-It plugin that customizes the rendering of tables in Markdown. This plugin allows developers to style and structure tables with additional attributes, making them more visually appealing and compatible with design systems.

Features

  • Adds customizable CSS classes to <table>, <thead>, <tbody>, <tr>, <th>, and <td> elements.
  • Supports custom attributes for <table> elements.
  • Replaces the default <table> tag with a configurable custom tag (e.g., q-markup-table).
  • Flexible configuration for adapting to different frameworks or design systems like Quasar.

Installation

Install the plugin via your preferred package manager:

# with pnpm:
pnpm add @md-plugins/md-plugin-table
# with Yarn:
yarn add @md-plugins/md-plugin-table
# with npm:
npm install @md-plugins/md-plugin-table

Usage

Basic Setup

import MarkdownIt from 'markdown-it'
import { tablePlugin } from '@md-plugins/md-plugin-table'

const md = new MarkdownIt()
md.use(tablePlugin, {
  tableClass: 'custom-table-class',
  tableToken: 'custom-table-tag',
  tableAttributes: [
    [':wrap-cells', 'true'],
    [':flat', 'true'],
  ],
})

const markdownContent = `
| Header 1 | Header 2 |
|----------|----------|
| Cell 1   | Cell 2   |
| Cell 3   | Cell 4   |
`

const renderedOutput = md.render(markdownContent)

console.log('Rendered Output:', renderedOutput)

Example Output

For the example above, the plugin produces the following output:

<custom-table-tag class="custom-table-class" :wrap-cells="true" :flat="true">
  <thead>
    <tr>
      <th>Header 1</th>
      <th>Header 2</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Cell 1</td>
      <td>Cell 2</td>
    </tr>
    <tr>
      <td>Cell 3</td>
      <td>Cell 4</td>
    </tr>
  </tbody>
</custom-table-tag>

Options

The md-plugin-table plugin supports the following options:

OptionTypeDefaultDescription
tableClassstring'markdown-table'CSS class for the <table> or custom tag.
tableTokenstring'q-markup-table'Tag name to replace the default <table> tag.
tableAttributesArray[]Array of attribute name-value pairs for the table.
tableHeaderClassstring'text-left'CSS class for <th> elements.
tableRowClassstring''CSS class for <tr> elements.
tableCellClassstring''CSS class for <td> elements.

Advanced Usage

Custom Styling

Apply custom styling to tables by defining your own classes:

md.use(tablePlugin, {
  tableClass: 'custom-table',
  tableHeaderClass: 'custom-header',
  tableRowClass: 'custom-row',
  tableCellClass: 'custom-cell',
})

Renered output:

<q-markup-table class="custom-table">
  <thead>
    <tr class="custom-row">
      <th class="custom-header">Header 1</th>
      <th class="custom-header">Header 2</th>
    </tr>
  </thead>
  <tbody>
    <tr class="custom-row">
      <td class="custom-cell">Cell 1</td>
      <td class="custom-cell">Cell 2</td>
    </tr>
  </tbody>
</q-markup-table>

Custom Attributes

Add attributes for frameworks like Quasar:

md.use(tablePlugin, {
  tableAttributes: [
    [':bordered', 'true'],
    [':flat', 'true'],
  ],
})

Rendered output:

<q-markup-table class="markdown-table" :bordered="true" :flat="true"> ... </q-markup-table>

Testing

Run the unit tests to ensure the plugin behaves as expected:

pnpm test

Documentation

In case this README falls out of date, please refer to the documentation for the latest information.

License

This project is licensed under the MIT License. See the LICENSE file for details.

Keywords

markdown-it

FAQs

Package last updated on 13 Feb 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts