
Product
Socket for Jira Is Now Available
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.
@stylelint/postcss-markdown
Advanced tools
PostCSS Syntax for parsing Markdown
First thing's first, install the module:
npm install postcss-syntax postcss-markdown --save-dev
If you want support SCSS/SASS/LESS/SugarSS syntax, you need to install the corresponding module.
var syntax = require("postcss-syntax")({
// Enable support for HTML (default: true) See: https://github.com/gucong3000/postcss-html
htmlInMd: true,
// syntax for parse scss (non-required options)
scss: require("postcss-scss"),
// syntax for parse less (non-required options)
less: require("postcss-less"),
// syntax for parse css blocks (non-required options)
css: require("postcss-safe-parser")
});
var autoprefixer = require("autoprefixer");
postcss([autoprefixer])
.process(source, { syntax: syntax })
.then(function(result) {
// An alias for the result.css property. Use it with syntaxes that generate non-CSS output.
result.content;
});
input:
# title
```css
::placeholder {
color: gray;
}
```
output:
# title
```css
::-webkit-input-placeholder {
color: gray;
}
:-ms-input-placeholder {
color: gray;
}
::-ms-input-placeholder {
color: gray;
}
::placeholder {
color: gray;
}
```
If you want support SCSS/SASS/LESS/SugarSS syntax, you need to install these module:
See: postcss-syntax
The main use case of this plugin is apply PostCSS transformations to CSS (and CSS-like) code blocks in markdown file.
stylelint-processor-markdown is another Stylelint processor that allows you to lint CSS within Markdown files. It works similarly to @stylelint/postcss-markdown but is a separate package. Both packages serve the same purpose, but @stylelint/postcss-markdown is more integrated with the PostCSS ecosystem.
remark-lint is a plugin for remark, a Markdown processor, that provides linting for Markdown files. While it doesn't specifically target CSS within Markdown, it can be extended with plugins to achieve similar functionality. It is more focused on the Markdown content itself rather than the embedded CSS.
FAQs
PostCSS syntax for parsing Markdown
The npm package @stylelint/postcss-markdown receives a total of 620,454 weekly downloads. As such, @stylelint/postcss-markdown popularity was classified as popular.
We found that @stylelint/postcss-markdown demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.