
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
highlightjs-blade
Advanced tools
Syntax implementation of Laravel's's Blade language for highlight.js.
We invest a lot of resources into creating best in class open source packages. You can support us by buying one of our paid products.
We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on our contact page. We publish all received postcards on our virtual postcard wall.
This package can be installed from NPM using npm or yarn:
yarn install highlightjs-blade
Simply include the Highlight.js library in your webpage or Node app, then load this module.
If you're using Node / Webpack / Rollup / Browserify, etc, simply require the language module, then register it with Highlight.js.
var hljs = require('highlightjs');
var hljsBlade = require('highlightjs-blade');
hljs.registerLanguage("blade", hljsBlade);
hljs.initHighlightingOnLoad();
Simply load the module after loading Highlight.js. You'll use the minified version found in the dist directory. This
module is just a CDN build of the language, so it will register itself as the Javascript is loaded.
<script type="text/javascript" src="/path/to/highlight.min.js"></script>
<script
type="text/javascript" charset="UTF-8"
src="/path/to/highlightjs-blade/dist/blade.min.js"
></script>
<script type="text/javascript">
hljs.initHighlightingOnLoad();
</script>
<script
type="text/javascript"
src="https://unpkg.com/highlightjs-blade/dist/blade.min.js"
></script>
You need to import both Highlight.js and third-party language like Blade:
import React, {Component} from 'react';
import 'highlight.js/scss/darcula.scss'; // your favourite theme
import blade from './blade'; // TODO: Figure out exact path in package
import hljs from 'highlight.js';
hljs.registerLanguage('blade', blade);
class Highlighter extends Component {
constructor(props) {
super(props);
hljs.initHighlightingOnLoad();
}
render() {
let {children} = this.props;
return
{
<pre ref={(node) => this.node = node}>
<code className="blade">
{children}
</code>
</pre>
}
}
}
export default Highlighter;
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
⚠️ These instructions are only for contributing to this package. If you just want to use the language definition, please refer to the Usage section above.
To build a distribution version of this module you need to use tools provided by Highlight.js. Please refer to the language contribution guide for more details on building this package.
highlightjs/highlight.js from GitHub.extra folder in the root directory, if missing.extra directory create a blade subdirectory and put the contents of this repository there.cdn target and you should see the blade language module being build alongside
Highlight.js itself:node ./tools/build.js -t cdn
...
Building extra\blade\dist/blade.min.js.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.
FAQs
highlight.js syntax definition for Laravel's Blade template language
The npm package highlightjs-blade receives a total of 315 weekly downloads. As such, highlightjs-blade popularity was classified as not popular.
We found that highlightjs-blade demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.