Socket
Socket
Sign inDemoInstall

@speedy-js/code-title

Package Overview
Dependencies
2
Maintainers
5
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @speedy-js/code-title

A markdown-it plugin to create named code blocks.


Version published
Maintainers
5
Install size
326 kB
Created

Readme

Source

markdown-it-named-code-blocks

A markdown-it plugin to create named code blocks.

Build Status NPM version Code Climate License

🧐 About

With this pllugin you can create named code blocks like:

```js:hello.js
console.log("Hello World!")
```

Rendered as:

<pre class="named-fence-block"><code class="language-js">console.log(&quot;Hello World!&quot;);
</code><div class="named-fence-filename">hello.js</div></pre>

After applying the css, it looks like this:

Renderd markdown

🏁 Getting Started

Prerequisites

  • Node.js

Installing

npm install markdown-it-named-code-blocks

🎈 Usage

Use this same as a normal markdown-it plugin:

var md = require('markdown-it');
var namedCodeBlocks = require('markdown-it-named-code-blocks');

var parser = md().use(namedCodeBlocks);

var str = '```js:hello.js\nconsole.log("Hello World!);```'

var result = parser.render(str);

Apply CSS like this:

.named-fence-block {
  position: relative;
  padding-top: 2em;
}

.named-fence-filename {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 4px;
  font-weight: bold;
  color: #000000;
  background: #c0c0c0;
  opacity: 0.6;
}

Rendered:

Renderd markdown

If you want to enable inline CSS:

var parser = md().use(namedCodeBlocks, {isEnableInlineCss: true});
<pre class="hljs named-fence-block" style="position: relative; padding-top: 2em"><code>console.log(&quot;Hello World!&quot;)
</code><div class="mincb-name" style="position: absolute; top: 0; left: 0; padding: 0 4px; font-weight: bold; color: #000000; background: #c0c0c0; opacity: .6;">hello.js</div></pre>

🎉 License

Distributed under the MIT License. See LICENSE for more information.

Keywords

FAQs

Last updated on 19 Jan 2022

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc