Skip to content

Commit 0d2b6a6

Browse files
authored
fix testcase (#23)
1 parent fb8a09e commit 0d2b6a6

File tree

2 files changed

+51
-41
lines changed

2 files changed

+51
-41
lines changed

extract.js

+3-5
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,9 @@ const remark = require("remark");
44
const findAllAfter = require("unist-util-find-all-after");
55

66
function mdParser (source, opts, result) {
7-
if (!result) {
8-
const htmlInMd = opts.syntax.config.htmlInMd;
9-
if (htmlInMd == null || htmlInMd) {
10-
result = require("postcss-html/extract")(source, opts, []);
11-
}
7+
const htmlInMd = opts.syntax.config.htmlInMd;
8+
if (!result && (htmlInMd == null || htmlInMd)) {
9+
result = require("postcss-html/extract")(source, opts, []);
1210
}
1311
const ast = remark().parse(source);
1412
const blocks = findAllAfter(ast, 0, (node) => (

test/markdown.js

+48-36
Original file line numberDiff line numberDiff line change
@@ -4,44 +4,45 @@ const expect = require("chai").expect;
44
const syntax = require("../");
55

66
describe("markdown tests", () => {
7+
const md = [
8+
"---",
9+
"title: Something Special",
10+
"---",
11+
"Here is some text.",
12+
"```css",
13+
".foo {}",
14+
"```",
15+
"And some other text.",
16+
"```css",
17+
" .foo { color: pink; }",
18+
" .bar {}",
19+
"```",
20+
"<style>",
21+
"a {",
22+
"\tdisplay: flex;",
23+
"}",
24+
"</style>",
25+
"```scss",
26+
"// Parser-breaking comment",
27+
"$foo: bar;",
28+
".foo {}",
29+
"```",
30+
"```js",
31+
"<style>",
32+
"js {}",
33+
"</style>",
34+
"```",
35+
"```html",
36+
"<style>",
37+
"html {}",
38+
"</style>",
39+
"```",
40+
"And the end.",
41+
].join("\n");
42+
743
it("CSS", () => {
8-
const md = [
9-
"---",
10-
"title: Something Special",
11-
"---",
12-
"Here is some text.",
13-
"```css",
14-
".foo {}",
15-
"```",
16-
"And some other text.",
17-
"```css",
18-
" .foo { color: pink; }",
19-
" .bar {}",
20-
"```",
21-
"<style>",
22-
"a {",
23-
"\tdisplay: flex;",
24-
"}",
25-
"</style>",
26-
"```scss",
27-
"// Parser-breaking comment",
28-
"$foo: bar;",
29-
".foo {}",
30-
"```",
31-
"```js",
32-
"<style>",
33-
"js {}",
34-
"</style>",
35-
"```",
36-
"```html",
37-
"<style>",
38-
"html {}",
39-
"</style>",
40-
"```",
41-
"And the end.",
42-
].join("\n");
4344
const document = syntax({
44-
html: true,
45+
htmlInMd: true,
4546
}).parse(md, {
4647
from: "markdown.md",
4748
});
@@ -50,6 +51,17 @@ describe("markdown tests", () => {
5051
expect(document.toString()).to.equal(md);
5152
});
5253

54+
it("CSS", () => {
55+
const document = syntax({
56+
htmlInMd: false,
57+
}).parse(md, {
58+
from: "markdown.md",
59+
});
60+
expect(document.source).to.haveOwnProperty("lang", "markdown");
61+
expect(document.nodes).to.have.lengthOf(3);
62+
expect(document.toString()).to.equal(md);
63+
});
64+
5365
it("empty code block", () => {
5466
const source = [
5567
"hi",

0 commit comments

Comments
 (0)