We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d6002a commit 667a2daCopy full SHA for 667a2da
docs/index.html
@@ -155,7 +155,9 @@
155
head: val[0].text,
156
value: val,
157
stable: val.some((elem) => {
158
- return !!elem.text && elem.text.includes("**Stable**: Yes")
+ return elem.type === "list" &&
159
+ !!elem.raw &&
160
+ elem.raw.includes("**Stable**: Yes");
161
}),
162
text: val.reduce((result, next) => {
163
return next.text != null
@@ -188,4 +190,4 @@
188
190
}
189
191
</script>
192
</body>
-</html>
193
+</html>
0 commit comments