File tree 2 files changed +50
-0
lines changed 2 files changed +50
-0
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,34 @@ and_yaml:
23
23
- 3.14
24
24
` ` `
25
25
26
+ ` ` ` css
27
+ /* issue 1484 regression */
28
+ # id {
29
+ background : green;
30
+ }
31
+
32
+ .class {
33
+ background : red;
34
+ }
35
+
36
+ div {
37
+ background : green;
38
+ }
39
+ ```
40
+
41
+ ``` html
42
+ <div >
43
+ <strong >Hello!</strong >
44
+ <h1 >World!</h1 >
45
+ </div >
46
+ ```
47
+
48
+ ``` js
49
+ var f = function (a , b ) {
50
+ return a + b;
51
+ };
52
+ ```
53
+
26
54
It sometimes generates warnings in commentRefs like this: [ unknownThingy.FromSomewhere]
27
55
28
56
Be sure to check out other awesome packages on [ pub] [ ] .
Original file line number Diff line number Diff line change @@ -66,6 +66,28 @@ <h1>Best Package</h1>
66
66
- "value"
67
67
- 3.14
68
68
</ code > </ pre >
69
+ < pre class ="language-css prettyprint "> < code class ="language-css "> /* issue 1484 regression */
70
+ #id {
71
+ background: green;
72
+ }
73
+
74
+ .class {
75
+ background: red;
76
+ }
77
+
78
+ div {
79
+ background: green;
80
+ }
81
+ </ code > </ pre >
82
+ < pre class ="language-html prettyprint "> < code class ="language-html "> <div>
83
+ <strong>Hello!</strong>
84
+ <h1>World!</h1>
85
+ </div>
86
+ </ code > </ pre >
87
+ < pre class ="language-js prettyprint "> < code class ="language-js "> var f = function(a, b) {
88
+ return a + b;
89
+ };
90
+ </ code > </ pre >
69
91
< p > It sometimes generates warnings in commentRefs like this: < code > unknownThingy.FromSomewhere</ code > </ p >
70
92
< p > Be sure to check out other awesome packages on < a href ="https://pub.dartlang.org "> pub</ a > .</ p >
71
93
</ section >
You can’t perform that action at this time.
0 commit comments