npm.io
4.18.3 • Published 1 month ago

@markuplint/ejs-parser

Licence
MIT
Version
4.18.3
Deps
1
Size
28 kB
Vulns
0
Weekly
0
Stars
605

@markuplint/ejs-parser

npm version

Use markuplint with EJS.

Install

$ npm install -D @markuplint/ejs-parser

$ yarn add -D @markuplint/ejs-parser

Usage

Add parser option to your configuration.

{
  "parser": {
    ".ejs$": "@markuplint/ejs-parser"
  }
}

Unsupported syntaxes

It's not able to support syntaxes if one's attribute is complex.

Available codes

<div attr="<%= value %>"></div>
<div attr='<%= value %>'></div>
<div attr="<%= value %>-<%= value2 %>-<%= value3 %>"></div>

Unavailable codes

If it doesn't nest by quotations.

<div attr=<%= value %>></div>