Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@salesforcedevs/sfdocs-remark-tabs-plugin

Package Overview
Dependencies
Maintainers
0
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@salesforcedevs/sfdocs-remark-tabs-plugin

SFDocs remark plugin for tabs

  • 1.0.2
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
366
increased by3.98%
Maintainers
0
Weekly downloads
 
Created
Source

Tabs plugin

About

This is a custom plugin for authoring the tabs in a markdown file. This plugin transforms the authored tabs into html components.

Example: ::::::tabset{tabs='["Tab1", "Tab2"]'}

:::::tab Test tab1 :::::

:::::tab Test tab2 :::::

::::::

Transformed html using this tab plugin is as follows:

    <dx-tab-panel-list tabs="[{"label":"Tab1"},{"label":"Tab2"}]">
        <dx-tab-panel>
            <p>Test tab1</p>
        </dx-tab-panel>
        <dx-tab-panel>
            <p>Test tab2</p>
        </dx-tab-panel>
    </dx-tab-panel-list>

Install & build

yarn install && yarn build

Pubilsh

To test the plugin code, publish alpha package using following command:

yarn publish --new-version 1.0.0-alpha --tag alpha --access=public

Use following command to publish actual package:

yarn publish

Please make sure to push your changes (version number & other changes) to git once publishing is complete.

Keywords

FAQs

Package last updated on 19 Sep 2024

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc