@t8/docsgen 0.1.60 → 0.1.61
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin.js +1 -1
- package/package.json +1 -1
- package/src/bin/setContent.ts +1 -1
package/dist/bin.js
CHANGED
|
@@ -798,7 +798,7 @@ ${features ? `
|
|
|
798
798
|
</main>
|
|
799
799
|
</div>
|
|
800
800
|
|
|
801
|
-
${[description, features].some((s) => s.includes("<pre><code ")) ? getInjectedContent(ctx, "index", ":has-code") || defaultCodeStyleContent : ""}
|
|
801
|
+
${[description, intro, features].some((s) => s.includes("<pre><code ")) ? getInjectedContent(ctx, "index", ":has-code") || defaultCodeStyleContent : ""}
|
|
802
802
|
${counterContent}
|
|
803
803
|
${getInjectedContent(ctx, "index", "body")}
|
|
804
804
|
</body>
|
package/package.json
CHANGED
package/src/bin/setContent.ts
CHANGED
|
@@ -232,7 +232,7 @@ ${
|
|
|
232
232
|
</div>
|
|
233
233
|
|
|
234
234
|
${
|
|
235
|
-
[description, features].some((s) => s.includes("<pre><code "))
|
|
235
|
+
[description, intro, features].some((s) => s.includes("<pre><code "))
|
|
236
236
|
? getInjectedContent(ctx, "index", ":has-code") || defaultCodeStyleContent
|
|
237
237
|
: ""
|
|
238
238
|
}
|