
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
@md-plugins/md-plugin-table
Advanced tools
A markdown-it plugin for handling tables with custom tag and styles.
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.
<table>
, <thead>
, <tbody>
, <tr>
, <th>
, and <td>
elements.<table>
elements.<table>
tag with a configurable custom tag (e.g., q-markup-table
).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
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)
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>
The md-plugin-table
plugin supports the following options:
Option | Type | Default | Description |
---|---|---|---|
tableClass | string | 'markdown-table' | CSS class for the <table> or custom tag. |
tableToken | string | 'q-markup-table' | Tag name to replace the default <table> tag. |
tableAttributes | Array | [] | Array of attribute name-value pairs for the table. |
tableHeaderClass | string | 'text-left' | CSS class for <th> elements. |
tableRowClass | string | '' | CSS class for <tr> elements. |
tableCellClass | string | '' | CSS class for <td> elements. |
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>
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>
Run the unit tests to ensure the plugin behaves as expected:
pnpm test
In case this README falls out of date, please refer to the documentation for the latest information.
This project is licensed under the MIT License. See the LICENSE file for details.
FAQs
A markdown-it plugin for handling tables with custom tag and styles.
We found that @md-plugins/md-plugin-table demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Research
/Security News
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.