File tree 2 files changed +51
-41
lines changed
2 files changed +51
-41
lines changed Original file line number Diff line number Diff line change @@ -4,11 +4,9 @@ const remark = require("remark");
4
4
const findAllAfter = require ( "unist-util-find-all-after" ) ;
5
5
6
6
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 , [ ] ) ;
12
10
}
13
11
const ast = remark ( ) . parse ( source ) ;
14
12
const blocks = findAllAfter ( ast , 0 , ( node ) => (
Original file line number Diff line number Diff line change @@ -4,44 +4,45 @@ const expect = require("chai").expect;
4
4
const syntax = require ( "../" ) ;
5
5
6
6
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
+
7
43
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" ) ;
43
44
const document = syntax ( {
44
- html : true ,
45
+ htmlInMd : true ,
45
46
} ) . parse ( md , {
46
47
from : "markdown.md" ,
47
48
} ) ;
@@ -50,6 +51,17 @@ describe("markdown tests", () => {
50
51
expect ( document . toString ( ) ) . to . equal ( md ) ;
51
52
} ) ;
52
53
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
+
53
65
it ( "empty code block" , ( ) => {
54
66
const source = [
55
67
"hi" ,
You can’t perform that action at this time.
0 commit comments